13
0
geforkt von Mirrors/Paper

#725: HumanEntity - add a method to make the entity drop the item they're holding

By: Shane Bee <shanebolenback@me.com>
Dieser Commit ist enthalten in:
CraftBukkit/Spigot 2020-08-16 09:32:47 +10:00
Ursprung d44eec6c38
Commit a58824a3d9

Datei anzeigen

@ -570,4 +570,9 @@ public class CraftHumanEntity extends CraftLivingEntity implements HumanEntity {
entity.remove(); entity.remove();
} }
} }
@Override
public boolean dropItem(boolean dropAll) {
return getHandle().dropItem(dropAll);
}
} }