geforkt von Mirrors/Paper
SPIGOT-5887: ClickType doesn't include off hand swaps
By: md_5 <git@md-5.net>
Dieser Commit ist enthalten in:
Ursprung
fe93691df2
Commit
cfc8b4ad5e
@ -1310,8 +1310,8 @@
|
||||
+ }
|
||||
+ break;
|
||||
+ case SWAP:
|
||||
+ if (packetplayinwindowclick.d() >= 0 && packetplayinwindowclick.d() < 9) {
|
||||
+ click = ClickType.NUMBER_KEY;
|
||||
+ if ((packetplayinwindowclick.d() >= 0 && packetplayinwindowclick.d() < 9) || packetplayinwindowclick.d() == 40) {
|
||||
+ click = (packetplayinwindowclick.d() == 40) ? ClickType.SWAP_OFFHAND : ClickType.NUMBER_KEY;
|
||||
+ Slot clickedSlot = this.player.activeContainer.getSlot(packetplayinwindowclick.c());
|
||||
+ if (clickedSlot.isAllowed(player)) {
|
||||
+ ItemStack hotbar = this.player.inventory.getItem(packetplayinwindowclick.d());
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren