13
0
geforkt von Mirrors/Paper
Dieser Commit ist enthalten in:
Tahg 2011-03-12 02:02:25 -05:00
Ursprung 79ccc5320a
Commit 0ac5c7f4cf

Datei anzeigen

@ -282,7 +282,7 @@ public class BlockRedstoneWire extends Block {
world.e(i, j, k, 0); world.e(i, j, k, 0);
} else } else
// Craftbukkit // 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); this.g(world, i, j, k);
} }