From a7ecdf8aabdeaf142b52a9a8c0f0044a5c22b836 Mon Sep 17 00:00:00 2001 From: Anuken Date: Sun, 8 May 2022 13:57:52 -0400 Subject: [PATCH] crash fix? --- core/src/mindustry/editor/EditorTile.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/editor/EditorTile.java b/core/src/mindustry/editor/EditorTile.java index ef0ec34075..68272ce8d1 100644 --- a/core/src/mindustry/editor/EditorTile.java +++ b/core/src/mindustry/editor/EditorTile.java @@ -157,7 +157,7 @@ public class EditorTile extends Tile{ } private boolean skip(){ - return state.isGame() || editor.isLoading(); + return state.isGame() || editor.isLoading() || world.isGenerating(); } private void op(OpType type, short value){