From 6208c3bee526a41f44873d836a9a3d9731976d68 Mon Sep 17 00:00:00 2001 From: ThePharros <18340303+ThePharros@users.noreply.github.com> Date: Wed, 20 May 2020 02:09:56 -0400 Subject: [PATCH] itemcharges: Add Magic Essence and Super Strength potion doses (#11634) --- .../client/plugins/itemcharges/ItemWithCharge.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/itemcharges/ItemWithCharge.java b/runelite-client/src/main/java/net/runelite/client/plugins/itemcharges/ItemWithCharge.java index b4892ef7a3..2ce93881bb 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/itemcharges/ItemWithCharge.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/itemcharges/ItemWithCharge.java @@ -249,6 +249,10 @@ enum ItemWithCharge MAGIC2(POTION, MAGIC_POTION2, 2), MAGIC3(POTION, MAGIC_POTION3, 3), MAGIC4(POTION, MAGIC_POTION4, 4), + MAGIC_ESS1(POTION, MAGIC_ESSENCE1, 1), + MAGIC_ESS2(POTION, MAGIC_ESSENCE2, 2), + MAGIC_ESS3(POTION, MAGIC_ESSENCE3, 3), + MAGIC_ESS4(POTION, MAGIC_ESSENCE4, 4), OVERLOAD1(POTION, OVERLOAD_1, 1), OVERLOAD2(POTION, OVERLOAD_2, 2), OVERLOAD3(POTION, OVERLOAD_3, 3), @@ -404,6 +408,10 @@ enum ItemWithCharge SUPER_REST2(POTION, SUPER_RESTORE2, 2), SUPER_REST3(POTION, SUPER_RESTORE3, 3), SUPER_REST4(POTION, SUPER_RESTORE4, 4), + SUPER_STR1(POTION, SUPER_STRENGTH1, 1), + SUPER_STR2(POTION, SUPER_STRENGTH2, 2), + SUPER_STR3(POTION, SUPER_STRENGTH3, 3), + SUPER_STR4(POTION, SUPER_STRENGTH4, 4), TCRYSTAL1(TELEPORT, TELEPORT_CRYSTAL_1, 1), TCRYSTAL2(TELEPORT, TELEPORT_CRYSTAL_2, 2), TCRYSTAL3(TELEPORT, TELEPORT_CRYSTAL_3, 3),