From 33d1755eae25ae818036baf9d3aa9d159be5d8e1 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Wed, 4 Jan 2023 01:28:25 +0000 Subject: [PATCH] Player: fixed not receiving slot updates for small crafting grid I'm not really sure why this tracking logic is here and not in InventoryManager, but for now it is what it is. --- src/player/Player.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/player/Player.php b/src/player/Player.php index 4ba1c81ae..3ef6a5e86 100644 --- a/src/player/Player.php +++ b/src/player/Player.php @@ -2448,7 +2448,7 @@ class Player extends Human implements CommandSender, ChunkListener, IPlayer{ $this->cursorInventory = new PlayerCursorInventory($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 }