Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-15 20:40:07 +01:00
SPIGOT-2211: Fix offhand slot client refresh
Dieser Commit ist enthalten in:
Ursprung
78434e8910
Commit
d884ab38d8
@ -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)));
|
||||
}
|
||||
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren