mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-20 14:08:57 +01:00
SPIGOT-2211: Fix offhand slot client refresh
This commit is contained in:
parent
78434e8910
commit
d884ab38d8
1 changed files with 6 additions and 3 deletions
|
@ -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,
|
// 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
|
// 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.
|
// subtracting that value from 8.
|
||||||
if (index < PlayerInventory.getHotbarSize())
|
if (index < PlayerInventory.getHotbarSize()) {
|
||||||
index = index + 36;
|
index += 36;
|
||||||
else if (index > 35)
|
} else if (index > 39) {
|
||||||
|
index += 5; // Off hand
|
||||||
|
} else if (index > 35) {
|
||||||
index = 8 - (index - 36);
|
index = 8 - (index - 36);
|
||||||
|
}
|
||||||
player.playerConnection.sendPacket(new PacketPlayOutSetSlot(player.defaultContainer.windowId, index, CraftItemStack.asNMSCopy(item)));
|
player.playerConnection.sendPacket(new PacketPlayOutSetSlot(player.defaultContainer.windowId, index, CraftItemStack.asNMSCopy(item)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue