Inventory: drop $send params from setItem() and clear()

This commit is contained in:
Dylan K. Taylor
2020-02-12 13:34:35 +00:00
parent 1c06438cbb
commit b108fb61bf
4 changed files with 14 additions and 16 deletions

View File

@ -58,8 +58,8 @@ class CraftingGrid extends BaseInventory{
return $this->gridWidth;
}
public function setItem(int $index, Item $item, bool $send = true) : void{
parent::setItem($index, $item, $send);
public function setItem(int $index, Item $item) : void{
parent::setItem($index, $item);
$this->seekRecipeBounds();
}