diff options
Diffstat (limited to 'Spigot-Server-Patches/0257-Allow-spawning-Item-entities-with-World.spawnEntity.patch')
-rw-r--r-- | Spigot-Server-Patches/0257-Allow-spawning-Item-entities-with-World.spawnEntity.patch | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Spigot-Server-Patches/0257-Allow-spawning-Item-entities-with-World.spawnEntity.patch b/Spigot-Server-Patches/0257-Allow-spawning-Item-entities-with-World.spawnEntity.patch new file mode 100644 index 0000000000..f5c89cb364 --- /dev/null +++ b/Spigot-Server-Patches/0257-Allow-spawning-Item-entities-with-World.spawnEntity.patch @@ -0,0 +1,27 @@ +From ee9295648e6b091a34abda3af8c24f48153c3253 Mon Sep 17 00:00:00 2001 +From: Aikar <[email protected]> +Date: Mon, 4 Jun 2018 20:39:20 -0400 +Subject: [PATCH] Allow spawning Item entities with World.spawnEntity + +This API has more capabilities than .dropItem with the Consumer function + +Item can be set inside of the Consumer pre spawn function. + +diff --git a/src/main/java/org/bukkit/craftbukkit/CraftWorld.java b/src/main/java/org/bukkit/craftbukkit/CraftWorld.java +index 1ed6e86855..1cc42edae8 100644 +--- a/src/main/java/org/bukkit/craftbukkit/CraftWorld.java ++++ b/src/main/java/org/bukkit/craftbukkit/CraftWorld.java +@@ -1070,6 +1070,10 @@ public class CraftWorld implements World { + if (Boat.class.isAssignableFrom(clazz)) { + entity = new EntityBoat(world, x, y, z); + entity.setPositionRotation(x, y, z, yaw, pitch); ++ // Paper start ++ } else if (org.bukkit.entity.Item.class.isAssignableFrom(clazz)) { ++ entity = new EntityItem(world, x, y, z, new net.minecraft.server.ItemStack(net.minecraft.server.Item.getItemOf(net.minecraft.server.Blocks.DIRT))); ++ // Paper end + } else if (FallingBlock.class.isAssignableFrom(clazz)) { + entity = new EntityFallingBlock(world, x, y, z, world.getType(new BlockPosition(x, y, z))); + } else if (Projectile.class.isAssignableFrom(clazz)) { +-- +2.21.0 + |