mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-16 04:33:56 -07:00
Fix NPE when blowing up an item frame. Fixes BUKKIT-2763
This commit is contained in:
@@ -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
|
||||||
|
Reference in New Issue
Block a user