From d1222fe8f141407144722c757248de387b6df929 Mon Sep 17 00:00:00 2001 From: Anuken Date: Sun, 17 Aug 2025 10:25:35 -0400 Subject: [PATCH] Fixed #11147 --- core/src/mindustry/editor/MapEditor.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/src/mindustry/editor/MapEditor.java b/core/src/mindustry/editor/MapEditor.java index 49912ba471..2d8217e9da 100644 --- a/core/src/mindustry/editor/MapEditor.java +++ b/core/src/mindustry/editor/MapEditor.java @@ -356,7 +356,10 @@ public class MapEditor{ } }); if(out != config){ + boolean prev = state.rules.editor; + state.rules.editor = true; tile.build.configureAny(out); + state.rules.editor = prev; } } }