Bump up the chain to update in unison

This commit is contained in:
Patrick 'Quezler' Mounier 2020-01-29 10:12:18 +01:00
parent 56b2cc2745
commit 93faf128b7
No known key found for this signature in database
GPG Key ID: 0D6CA7326C76D8EA

View File

@ -340,7 +340,10 @@ public class CraterConveyor extends Block implements Autotiler{
// awaken inputting conveyors
private void bump(Tile tile){
for(Tile input : inputs(tile)){
if(input.entity.isSleeping()) input.entity.noSleep();
if(input.entity.isSleeping()){
input.entity.noSleep();
bump(input);
}
}
}
}