mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-23 21:38:00 +01:00
Fixed slime pustule not triggering a redstone update above it
This commit is contained in:
parent
56e91629b1
commit
d6e1a6c3b8
1 changed files with 1 additions and 1 deletions
|
@ -199,7 +199,7 @@ public class SlimePustuleBlock extends Block {
|
|||
public void onStateReplaced(BlockState state, World world, BlockPos pos, BlockState newState, boolean moved) {
|
||||
super.onStateReplaced(state, world, pos, newState, moved);
|
||||
if (state.isOf(this) && newState.isOf(this) && state.get(POWERED) != newState.get(POWERED)) {
|
||||
world.updateNeighbor(pos.up(), this, pos);
|
||||
world.updateNeighborsAlways(pos.up(), this);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue