diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotItemStack.java b/Core/src/main/java/com/plotsquared/core/plot/PlotItemStack.java index ea9e5d7de..68ea240dc 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotItemStack.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotItemStack.java @@ -67,14 +67,25 @@ public class PlotItemStack { return this.type; } + /** + * Returns the number of items in this stack. + * Valid values range from 1-255. + * + * @return the amount of items in this stack + */ public int getAmount() { return amount; } + /** + * Returns the given name of this stack of items. The name is displayed when + * hovering over the item. + * + * @return the given name of this stack of items + */ public String getName() { return name; } - public String[] getLore() { return lore; }