mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-02 04:56:50 +01:00
Fix NPE when blowing up an item frame. Fixes BUKKIT-2763
This commit is contained in:
parent
f479aa84a4
commit
347fd3cb6e
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue