mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
15 lines
901 B
Diff
15 lines
901 B
Diff
--- a/net/minecraft/server/ItemEndCrystal.java
|
|
+++ b/net/minecraft/server/ItemEndCrystal.java
|
|
@@ -34,6 +34,11 @@
|
|
EntityEnderCrystal entityendercrystal = new EntityEnderCrystal(world, d0 + 0.5D, d1, d2 + 0.5D);
|
|
|
|
entityendercrystal.setShowingBottom(false);
|
|
+ // CraftBukkit start
|
|
+ if (org.bukkit.craftbukkit.event.CraftEventFactory.callEntityPlaceEvent(itemactioncontext, entityendercrystal).isCancelled()) {
|
|
+ return EnumInteractionResult.FAIL;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
world.addEntity(entityendercrystal);
|
|
if (world.worldProvider instanceof WorldProviderTheEnd) {
|
|
EnderDragonBattle enderdragonbattle = ((WorldProviderTheEnd) world.worldProvider).q();
|