mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-13 11:18:23 +01:00
fixed diodes
This commit is contained in:
parent
79ccc5320a
commit
0ac5c7f4cf
1 changed files with 1 additions and 1 deletions
|
@ -282,7 +282,7 @@ public class BlockRedstoneWire extends Block {
|
|||
world.e(i, j, k, 0);
|
||||
} else
|
||||
// Craftbukkit
|
||||
if ((Block.byId[l] != null && Block.byId[l].c()) || Block.DIODE_OFF.id == l && Block.DIODE_ON.id == l) {
|
||||
if ((Block.byId[l] != null && Block.byId[l].c()) || Block.DIODE_OFF.id == l || Block.DIODE_ON.id == l) {
|
||||
this.g(world, i, j, k);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue