diff --git a/src/org/apollo/game/model/SlottedItem.java b/src/org/apollo/game/model/SlottedItem.java index 8cae5643..1f878506 100644 --- a/src/org/apollo/game/model/SlottedItem.java +++ b/src/org/apollo/game/model/SlottedItem.java @@ -28,6 +28,24 @@ public final class SlottedItem { this.item = item; } + /** + * Gets the id of the {@link Item}. + * + * @return The id. + */ + public int getId() { + return item.getId(); + } + + /** + * Gets the amount of the {@link Item}. + * + * @return The amount. + */ + public int getamount() { + return item.getAmount(); + } + /** * Gets the item. *