From 71488313e1eaedcaa5e0daab25b542a5732266ee Mon Sep 17 00:00:00 2001 From: Anuken Date: Tue, 22 Dec 2020 20:13:34 -0500 Subject: [PATCH] Fixed #4082 --- core/src/mindustry/core/Control.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/core/Control.java b/core/src/mindustry/core/Control.java index f4f3dc75df..8dd487034b 100644 --- a/core/src/mindustry/core/Control.java +++ b/core/src/mindustry/core/Control.java @@ -351,7 +351,7 @@ public class Control implements ApplicationListener, Loadable{ if(tile != null){ tile.setBlock(content.block(plan.block), state.rules.waveTeam, plan.rotation); if(plan.config != null && tile.build != null){ - tile.build.configure(plan.config); + tile.build.configureAny(plan.config); } } }