mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-08 02:42:58 +00:00
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:
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user