mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-06 02:35:49 +01:00
SPIGOT-5707: PersistentDataHolder not Persistent on API dropped Item
This commit is contained in:
parent
893ad93b3e
commit
41712eddeb
1 changed files with 1 additions and 3 deletions
|
@ -593,9 +593,7 @@ public class CraftWorld implements World {
|
||||||
EntityItem entity = new EntityItem(world, loc.getX(), loc.getY(), loc.getZ(), CraftItemStack.asNMSCopy(item));
|
EntityItem entity = new EntityItem(world, loc.getX(), loc.getY(), loc.getZ(), CraftItemStack.asNMSCopy(item));
|
||||||
entity.pickupDelay = 10;
|
entity.pickupDelay = 10;
|
||||||
world.addEntity(entity, SpawnReason.CUSTOM);
|
world.addEntity(entity, SpawnReason.CUSTOM);
|
||||||
// TODO this is inconsistent with how Entity.getBukkitEntity() works.
|
return (org.bukkit.entity.Item) entity.getBukkitEntity();
|
||||||
// However, this entity is not at the moment backed by a server entity class so it may be left.
|
|
||||||
return new CraftItem(world.getServer(), entity);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue