Merge branch 'stable' into item-stack-request

This commit is contained in:
Dylan K. Taylor 2023-01-04 01:28:42 +00:00
commit 3d4ed5308e
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D

View File

@ -2448,7 +2448,7 @@ class Player extends Human implements CommandSender, ChunkListener, IPlayer{
$this->cursorInventory = new PlayerCursorInventory($this); $this->cursorInventory = new PlayerCursorInventory($this);
$this->craftingGrid = new PlayerCraftingInventory($this); $this->craftingGrid = new PlayerCraftingInventory($this);
$this->addPermanentInventories($this->inventory, $this->armorInventory, $this->cursorInventory, $this->offHandInventory); $this->addPermanentInventories($this->inventory, $this->armorInventory, $this->cursorInventory, $this->offHandInventory, $this->craftingGrid);
//TODO: more windows //TODO: more windows
} }