Fix NPE when blowing up an item frame. Fixes BUKKIT-2763
This commit is contained in:
parent
f479aa84a4
commit
347fd3cb6e
@ -226,7 +226,7 @@ public abstract class EntityHanging extends Entity {
|
|||||||
this.world.getServer().getPluginManager().callEvent(paintingEvent);
|
this.world.getServer().getPluginManager().callEvent(paintingEvent);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (dead || event.isCancelled() || (paintingEvent != null && paintingEvent.isCancelled())) {
|
if (dead || (event != null && event.isCancelled()) || (paintingEvent != null && paintingEvent.isCancelled())) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
// CraftBukkit end
|
// CraftBukkit end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user