From 3a91a8eb0051db25f538619e9686eebfb7daa8b7 Mon Sep 17 00:00:00 2001 From: Anuken Date: Tue, 23 Apr 2024 09:17:38 -0400 Subject: [PATCH] Fixed #9771 --- core/src/mindustry/content/Blocks.java | 2 +- core/src/mindustry/ui/dialogs/KeybindDialog.java | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/core/src/mindustry/content/Blocks.java b/core/src/mindustry/content/Blocks.java index 36dfb1ee3d..d0f1cabe59 100644 --- a/core/src/mindustry/content/Blocks.java +++ b/core/src/mindustry/content/Blocks.java @@ -4108,7 +4108,7 @@ public class Blocks{ rotateSpeed = 3f; coolant = consume(new ConsumeLiquid(Liquids.water, 15f / 60f)); - limitRange(16f); + limitRange(25f); }}; sublimate = new ContinuousLiquidTurret("sublimate"){{ diff --git a/core/src/mindustry/ui/dialogs/KeybindDialog.java b/core/src/mindustry/ui/dialogs/KeybindDialog.java index 1f9ead9a31..58c186ff31 100644 --- a/core/src/mindustry/ui/dialogs/KeybindDialog.java +++ b/core/src/mindustry/ui/dialogs/KeybindDialog.java @@ -213,7 +213,6 @@ public class KeybindDialog extends Dialog{ @Override public boolean keyDown(InputEvent event, KeyCode keycode){ rebindDialog.hide(); - if(keycode == KeyCode.escape) return false; rebind(section, name, keycode); return false; }