NPE fix in redstone

This commit is contained in:
Tahg 2011-03-11 00:36:19 -05:00
parent c06f3e0d76
commit 786fdfb9fe

View File

@ -280,7 +280,7 @@ public class BlockRedstoneWire extends Block {
if (!flag) {
this.b_(world, i, j, k, i1);
world.e(i, j, k, 0);
} else if(Block.byId[l].c() || Block.DIODE_OFF.id == l && Block.DIODE_ON.id == l) { //condition added by Craftbukkit
} else if((Block.byId[l] != null && Block.byId[l].c()) || Block.DIODE_OFF.id == l && Block.DIODE_ON.id == l) { //condition added by Craftbukkit
this.g(world, i, j, k);
}