geforkt von Mirrors/Paper
more NPE fixes regarding redstone
Dieser Commit ist enthalten in:
Ursprung
5c4f1d75b5
Commit
79ccc5320a
@ -12,7 +12,7 @@ public class BlockBloodStone extends Block {
|
|||||||
|
|
||||||
// Craftbukkit start
|
// Craftbukkit start
|
||||||
public void a(World world, int i, int j, int k, int l) {
|
public void a(World world, int i, int j, int k, int l) {
|
||||||
if (net.minecraft.server.Block.byId[l].c()) {
|
if (net.minecraft.server.Block.byId[l] != null && net.minecraft.server.Block.byId[l].c()) {
|
||||||
CraftWorld craftWorld = ((WorldServer) world).getWorld();
|
CraftWorld craftWorld = ((WorldServer) world).getWorld();
|
||||||
CraftServer server = ((WorldServer) world).getServer();
|
CraftServer server = ((WorldServer) world).getServer();
|
||||||
org.bukkit.block.Block block = craftWorld.getBlockAt(i, j, k);
|
org.bukkit.block.Block block = craftWorld.getBlockAt(i, j, k);
|
||||||
|
@ -53,7 +53,7 @@ public class BlockPumpkin extends Block {
|
|||||||
|
|
||||||
// Craftbukkit start
|
// Craftbukkit start
|
||||||
public void a(World world, int i, int j, int k, int l) {
|
public void a(World world, int i, int j, int k, int l) {
|
||||||
if (net.minecraft.server.Block.byId[l].c()) {
|
if (net.minecraft.server.Block.byId[l] != null && net.minecraft.server.Block.byId[l].c()) {
|
||||||
CraftWorld craftWorld = ((WorldServer) world).getWorld();
|
CraftWorld craftWorld = ((WorldServer) world).getWorld();
|
||||||
CraftServer server = ((WorldServer) world).getServer();
|
CraftServer server = ((WorldServer) world).getServer();
|
||||||
org.bukkit.block.Block block = craftWorld.getBlockAt(i, j, k);
|
org.bukkit.block.Block block = craftWorld.getBlockAt(i, j, k);
|
||||||
|
@ -106,7 +106,7 @@ public class BlockSign extends BlockContainer {
|
|||||||
super.a(world, i, j, k, l);
|
super.a(world, i, j, k, l);
|
||||||
|
|
||||||
// Craftbukkit start
|
// Craftbukkit start
|
||||||
if (net.minecraft.server.Block.byId[l].c()) {
|
if (net.minecraft.server.Block.byId[l] != null && net.minecraft.server.Block.byId[l].c()) {
|
||||||
CraftWorld craftWorld = ((WorldServer) world).getWorld();
|
CraftWorld craftWorld = ((WorldServer) world).getWorld();
|
||||||
CraftServer server = ((WorldServer) world).getServer();
|
CraftServer server = ((WorldServer) world).getServer();
|
||||||
Block block = craftWorld.getBlockAt(i, j, k);
|
Block block = craftWorld.getBlockAt(i, j, k);
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren