diff --git a/core/src/mindustry/editor/MapEditorDialog.java b/core/src/mindustry/editor/MapEditorDialog.java index cb87788202..65e53cc3d4 100644 --- a/core/src/mindustry/editor/MapEditorDialog.java +++ b/core/src/mindustry/editor/MapEditorDialog.java @@ -264,6 +264,7 @@ public class MapEditorDialog extends Dialog implements Disposable{ state.teams = new Teams(); player.reset(); state.rules = Gamemode.editor.apply(lastSavedRules.copy()); + state.rules.limitMapArea = false; state.rules.sector = null; state.map = new Map(StringMap.of( "name", "Editor Playtesting", diff --git a/core/src/mindustry/world/Block.java b/core/src/mindustry/world/Block.java index 12e8689944..18acfc5982 100644 --- a/core/src/mindustry/world/Block.java +++ b/core/src/mindustry/world/Block.java @@ -155,7 +155,7 @@ public class Block extends UnlockableContent implements Senseable{ /** Clipping size of this block. Should be as large as the block will draw. */ public float clipSize = -1f; /** When placeRangeCheck is enabled, this is the range checked for enemy blocks. */ - public float placeOverlapRange = 60f; + public float placeOverlapRange = 50f; /** Max of timers used. */ public int timers = 0; /** Cache layer. Only used for 'cached' rendering. */