2
0
mirror of https://github.com/PaperMC/Paper.git synced 2025-02-17 15:11:02 +08:00

Fix client crash on InventoryClick cancel. Fixes BUKKIT-1841

This commit is contained in:
H31IX 2012-06-22 01:15:56 -04:00 committed by Travis Watkins
parent a21f038fc3
commit 6093bcc445

View File

@ -1175,8 +1175,6 @@ public class NetServerHandler extends NetHandler implements ICommandListener {
if (packet107setcreativeslot.slot > -1) { if (packet107setcreativeslot.slot > -1) {
this.player.netServerHandler.sendPacket(new Packet103SetSlot(this.player.defaultContainer.windowId, packet107setcreativeslot.slot, CraftItemStack.createNMSItemStack(item))); this.player.netServerHandler.sendPacket(new Packet103SetSlot(this.player.defaultContainer.windowId, packet107setcreativeslot.slot, CraftItemStack.createNMSItemStack(item)));
} }
this.player.netServerHandler.sendPacket(new Packet103SetSlot(this.player.defaultContainer.windowId, -1, null));
return; return;
case DEFAULT: case DEFAULT:
// We do the stuff below // We do the stuff below