This commit is contained in:
Anuken
2020-08-02 10:35:50 -04:00
parent a7c0f9e73c
commit f97d1eedee
3 changed files with 12 additions and 9 deletions

View File

@@ -161,6 +161,9 @@ public class StackConveyor extends Block implements Autotiler{
for(Building near : proximity){
if(near instanceof StackConveyorEntity){
near.onProximityUpdate();
for(Building other : near.proximity){
if(!(other instanceof StackConveyorEntity)) other.onProximityUpdate();
}
}
}
}