Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-16 21:10:17 +01:00
SPIGOT-1610: Treat clicking on an inventory window as clicking outside it
Dieser Commit ist enthalten in:
Ursprung
f8e38f2d9f
Commit
92602ad172
@ -125,7 +125,7 @@ public class CraftInventoryView extends InventoryView {
|
||||
// Nothing to do, it's a CONTAINER slot
|
||||
}
|
||||
} else {
|
||||
if (slot == -999) {
|
||||
if (slot == -999 || slot == -1) {
|
||||
type = SlotType.OUTSIDE;
|
||||
} else if (inventory.getType() == InventoryType.CRAFTING) {
|
||||
if (slot < 9) {
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren