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; }