mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-13 11:18:23 +01:00
#540: Add Inventory#isEmpty()
By: Parker Hawke <hawkeboyz2@hotmail.com>
This commit is contained in:
parent
6a0096dd86
commit
045fc42649
1 changed files with 8 additions and 0 deletions
|
@ -288,6 +288,14 @@ public interface Inventory extends Iterable<ItemStack> {
|
|||
*/
|
||||
public int firstEmpty();
|
||||
|
||||
/**
|
||||
* Check whether or not this inventory is empty. An inventory is considered
|
||||
* to be empty if there are no ItemStacks in any slot of this inventory.
|
||||
*
|
||||
* @return true if empty, false otherwise
|
||||
*/
|
||||
public boolean isEmpty();
|
||||
|
||||
/**
|
||||
* Removes all stacks in the inventory matching the given material.
|
||||
*
|
||||
|
|
Loading…
Add table
Reference in a new issue