From 5ab04030b8010a31cd06972e2b7f5d2eec384c12 Mon Sep 17 00:00:00 2001 From: Adam Date: Sat, 27 Jun 2020 12:21:08 -0400 Subject: [PATCH] api: add high alch price to item composition --- .../src/main/java/net/runelite/api/ItemComposition.java | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/runelite-api/src/main/java/net/runelite/api/ItemComposition.java b/runelite-api/src/main/java/net/runelite/api/ItemComposition.java index 16d7876c67..72f955e5ba 100644 --- a/runelite-api/src/main/java/net/runelite/api/ItemComposition.java +++ b/runelite-api/src/main/java/net/runelite/api/ItemComposition.java @@ -91,9 +91,18 @@ public interface ItemComposition * @return the general store value of the item * * @see Constants#HIGH_ALCHEMY_MULTIPLIER + * @see ItemComposition#getHaPrice() */ int getPrice(); + /** + * Get the high alchemy price for this item. All items have a high alchemy price, + * but not all items can be alched. + * + * @return the high alch price + */ + int getHaPrice(); + /** * Checks whether the item is members only. *