Fix SmithingTableInventory size (#6035)

Since 1.20 SmithingTable has a new Template slot, size is now 3

Fix debug error from InventoryManager
This commit is contained in:
Jonathan B
2023-09-06 09:15:27 +02:00
committed by GitHub
parent 28ce7ac5fd
commit ce04478395

View File

@ -32,6 +32,6 @@ final class SmithingTableInventory extends SimpleInventory implements BlockInven
public function __construct(Position $holder){ public function __construct(Position $holder){
$this->holder = $holder; $this->holder = $holder;
parent::__construct(2); parent::__construct(3);
} }
} }