Inventory: eliminate remaining $send parameters

This commit is contained in:
Dylan K. Taylor
2020-02-23 21:59:51 +00:00
parent 36685001bd
commit 7c2741e4f5
3 changed files with 8 additions and 10 deletions

View File

@ -80,7 +80,7 @@ interface Inventory{
/**
* @param Item[] $items
*/
public function setContents(array $items, bool $send = true) : void;
public function setContents(array $items) : void;
/**
* Checks if the inventory contains any Item with the same material data.
@ -127,7 +127,7 @@ interface Inventory{
/**
* Clears all the slots
*/
public function clearAll(bool $send = true) : void;
public function clearAll() : void;
/**
* Swaps the specified slots.