diff --git a/core/src/mindustry/world/Block.java b/core/src/mindustry/world/Block.java index 8feba42ffb..1d8e1db2a9 100644 --- a/core/src/mindustry/world/Block.java +++ b/core/src/mindustry/world/Block.java @@ -588,7 +588,7 @@ public class Block extends UnlockableContent{ } public boolean isPlaceable(){ - return isVisible() && !state.rules.bannedBlocks.contains(this); + return isVisible() && (!state.rules.bannedBlocks.contains(this) || state.rules.editor); } /** Called when building of this block begins. */