mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-12-04 20:18:34 +01:00
Possible fix for super rare stack overflow.
This commit is contained in:
parent
e62fb634d1
commit
c197f653ac
1 changed files with 1 additions and 4 deletions
|
@ -154,13 +154,10 @@ public abstract class BlockContainerBase extends Block implements EntityBlock {
|
|||
boolean powered = world.getBestNeighborSignal(pos) > 0;
|
||||
boolean wasPowered = base.isRedstonePowered;
|
||||
if (powered && !wasPowered) {
|
||||
base.setRedstonePowered(true);
|
||||
if (base.respondsToPulses()) {
|
||||
// TODO: [port] eval what this does? :D
|
||||
// world.scheduleUpdate(pos, this, this.tickRate(world));
|
||||
// Who knows -Flanks
|
||||
base.activateOnPulse();
|
||||
}
|
||||
base.setRedstonePowered(true);
|
||||
} else if (!powered && wasPowered) {
|
||||
base.setRedstonePowered(false);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue