2019-07-20 06:01:24 +02:00
|
|
|
From cb17a03b8e605212fcb5bacfd881087d50f109c1 Mon Sep 17 00:00:00 2001
|
2018-06-05 02:48:14 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
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
|
2019-07-20 06:01:24 +02:00
|
|
|
index c3dffc1e44..0b632a0e2e 100644
|
2018-06-05 02:48:14 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/CraftWorld.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/CraftWorld.java
|
2019-07-11 18:59:21 +02:00
|
|
|
@@ -1391,6 +1391,10 @@ public class CraftWorld implements World {
|
2018-06-05 02:48:14 +02:00
|
|
|
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)) {
|
|
|
|
--
|
2019-06-16 12:15:21 +02:00
|
|
|
2.22.0
|
2018-06-05 02:48:14 +02:00
|
|
|
|