3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-18 12:30:06 +01:00

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

Dieser Commit ist enthalten in:
Shane Bee 2020-08-16 09:32:47 +10:00 committet von md_5
Ursprung 82542d01d8
Commit 13945b7687
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: E8E901AC7C617C11

Datei anzeigen

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