3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-19 21:10:10 +01:00

Fixed players attempting to attack item entities - This fixes BUKKIT-341

Dieser Commit ist enthalten in:
Nathan Adams 2012-01-14 13:27:15 +00:00
Ursprung d5438c30b9
Commit 3d31c27864

Datei anzeigen

@ -922,10 +922,15 @@ public class NetServerHandler extends NetHandler implements ICommandListener {
if (itemInHand != null && itemInHand.count <= -1) {
this.player.updateInventory(this.player.activeContainer);
}
// CraftBukkit end
} else if (packet7useentity.c == 1) {
if (entity instanceof EntityItem) {
disconnect("Attacking an item is not permitted");
System.out.println("Player " + player.name + " tried to attack an item entity, so I have disconnected them for exploiting.");
return;
}
this.player.f(entity);
// CraftBukkit start - update the client if the item is an infinite one
if (itemInHand != null && itemInHand.count <= -1) {
this.player.updateInventory(this.player.activeContainer);
}