Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-16 21:10:17 +01:00
Fix NPE when blowing up an item frame. Fixes BUKKIT-2763
Dieser Commit ist enthalten in:
Ursprung
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
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren