diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/poh/PohConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/poh/PohConfig.java index 9496352800..317be3b2cf 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/poh/PohConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/poh/PohConfig.java @@ -160,4 +160,14 @@ public interface PohConfig extends Config { return true; } + + @ConfigItem( + keyName = "showMythicalCape", + name = "Show Mythical Cape", + description = "Configures whether or not the Mythical Cape is displayed" + ) + default boolean showMythicalCape() + { + return true; + } } diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/poh/PohIcons.java b/runelite-client/src/main/java/net/runelite/client/plugins/poh/PohIcons.java index b5b972f61e..370f8061a5 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/poh/PohIcons.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/poh/PohIcons.java @@ -86,7 +86,8 @@ public enum PohIcons ), DIGSITEPENDANT("digsitependant", DIGSITE_PENDANT, DIGSITE_PENDANT_33417, DIGSITE_PENDANT_33418, DIGSITE_PENDANT_33420 - ); + ), + MYTHICALCAPE("mythicalcape", MYTHICAL_CAPE, MOUNTED_MYTHICAL_CAPE); private static final Map minimapIcons; diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/poh/PohOverlay.java b/runelite-client/src/main/java/net/runelite/client/plugins/poh/PohOverlay.java index 368e763f8f..73d970a5a2 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/poh/PohOverlay.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/poh/PohOverlay.java @@ -144,5 +144,9 @@ public class PohOverlay extends Overlay { iconList.add(PohIcons.XERICSTALISMAN); } + if (config.showMythicalCape()) + { + iconList.add(PohIcons.MYTHICALCAPE); + } } } diff --git a/runelite-client/src/main/resources/net/runelite/client/plugins/poh/mythicalcape.png b/runelite-client/src/main/resources/net/runelite/client/plugins/poh/mythicalcape.png new file mode 100644 index 0000000000..9e2d64d328 Binary files /dev/null and b/runelite-client/src/main/resources/net/runelite/client/plugins/poh/mythicalcape.png differ