Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-12-18 12:30:06 +01:00
SPIGOT-5887: ClickType doesn't include off hand swaps
Dieser Commit ist enthalten in:
Ursprung
23aac2a53f
Commit
e09dbecab8
@ -1310,8 +1310,8 @@
|
|||||||
+ }
|
+ }
|
||||||
+ break;
|
+ break;
|
||||||
+ case SWAP:
|
+ case SWAP:
|
||||||
+ if (packetplayinwindowclick.d() >= 0 && packetplayinwindowclick.d() < 9) {
|
+ if ((packetplayinwindowclick.d() >= 0 && packetplayinwindowclick.d() < 9) || packetplayinwindowclick.d() == 40) {
|
||||||
+ click = ClickType.NUMBER_KEY;
|
+ click = (packetplayinwindowclick.d() == 40) ? ClickType.SWAP_OFFHAND : ClickType.NUMBER_KEY;
|
||||||
+ Slot clickedSlot = this.player.activeContainer.getSlot(packetplayinwindowclick.c());
|
+ Slot clickedSlot = this.player.activeContainer.getSlot(packetplayinwindowclick.c());
|
||||||
+ if (clickedSlot.isAllowed(player)) {
|
+ if (clickedSlot.isAllowed(player)) {
|
||||||
+ ItemStack hotbar = this.player.inventory.getItem(packetplayinwindowclick.d());
|
+ ItemStack hotbar = this.player.inventory.getItem(packetplayinwindowclick.d());
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren