From cd07d3b13d78e0a23ae8af9b46a4236188b80e4e Mon Sep 17 00:00:00 2001 From: Anuken Date: Sat, 26 Oct 2019 08:52:53 -0400 Subject: [PATCH] Update Block.java --- core/src/io/anuke/mindustry/world/Block.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/io/anuke/mindustry/world/Block.java b/core/src/io/anuke/mindustry/world/Block.java index 7d2964c5b9..cfd735f3b7 100644 --- a/core/src/io/anuke/mindustry/world/Block.java +++ b/core/src/io/anuke/mindustry/world/Block.java @@ -322,7 +322,7 @@ public class Block extends BlockStorage{ if(!tempTiles.isEmpty()){ Tile toLink = tempTiles.first(); if(!toLink.entity.power.links.contains(tile.pos())){ - toLink.configure(tile.pos()); + toLink.configureAny(tile.pos()); } } }