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

@ -43,7 +43,7 @@ interface Inventory{
/**
* Puts an Item in a slot.
*/
public function setItem(int $index, Item $item, bool $send = true) : void;
public function setItem(int $index, Item $item) : void;
/**
* Stores the given Items in the inventory. This will try to fill
@ -122,7 +122,7 @@ interface Inventory{
/**
* Will clear a specific slot
*/
public function clear(int $index, bool $send = true) : void;
public function clear(int $index) : void;
/**
* Clears all the slots