SPIGOT-1596: BlockCauldron crash

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot 2016-03-02 06:31:11 +11:00
parent c964d0499b
commit 849f9f08b0

View file

@ -120,7 +120,7 @@
+ int newLevel = Integer.valueOf(MathHelper.clamp(i, 0, 3));
+ CauldronLevelChangeEvent event = new CauldronLevelChangeEvent(
+ world.getWorld().getBlockAt(blockposition.getX(), blockposition.getY(), blockposition.getZ()),
+ entity.getBukkitEntity(), reason, iblockdata.get(BlockCauldron.LEVEL), newLevel
+ (entity == null) ? null : entity.getBukkitEntity(), reason, iblockdata.get(BlockCauldron.LEVEL), newLevel
+ );
+ world.getServer().getPluginManager().callEvent(event);
+ if (event.isCancelled()) {