SPIGOT-2211: Fix offhand slot client refresh

Dieser Commit ist enthalten in:
md_5 2016-04-24 12:30:55 +10:00
Ursprung 78434e8910
Commit d884ab38d8

Datei anzeigen

@ -95,10 +95,13 @@ public class CraftInventoryPlayer extends CraftInventory implements org.bukkit.i
// to reverse the order of the index from 8. That means we need 0 to correspond to 8, 1 to correspond to 7,
// 2 to correspond to 6, and 3 to correspond to 5. We do this simply by taking the result of (index - 36) and
// subtracting that value from 8.
if (index < PlayerInventory.getHotbarSize())
index = index + 36;
else if (index > 35)
if (index < PlayerInventory.getHotbarSize()) {
index += 36;
} else if (index > 39) {
index += 5; // Off hand
} else if (index > 35) {
index = 8 - (index - 36);
}
player.playerConnection.sendPacket(new PacketPlayOutSetSlot(player.defaultContainer.windowId, index, CraftItemStack.asNMSCopy(item)));
}