Expose isStackable on ItemComposition objects

This commit is contained in:
SomeoneWithAnInternetConnection
2018-02-25 19:55:00 -05:00
parent 9e44e00248
commit 9b50f16339
3 changed files with 57 additions and 0 deletions
@@ -74,4 +74,11 @@ public interface ItemComposition
* @return true if members-only, false otherwise.
*/
boolean isMembers();
/**
* Returns whether or not the item stacks in the players' inventories
*
* @return true if stackable, false otherwise
*/
boolean isStackable();
}