From 923ddb190ddf66044f56f7bd92f8d34da78d15ca Mon Sep 17 00:00:00 2001 From: Kyleeld <48519776+Kyleeld@users.noreply.github.com> Date: Tue, 2 Jul 2019 13:26:26 +0100 Subject: [PATCH] Update NightmareZoneConfig.java --- .../plugins/nightmarezone/NightmareZoneConfig.java | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/nightmarezone/NightmareZoneConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/nightmarezone/NightmareZoneConfig.java index 227ccf4066..900b73fa62 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/nightmarezone/NightmareZoneConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/nightmarezone/NightmareZoneConfig.java @@ -36,13 +36,24 @@ public interface NightmareZoneConfig extends Config keyName = "moveoverlay", name = "Override NMZ overlay", description = "Overrides the overlay so it doesn't conflict with other RuneLite plugins", - position = 1 + position = 0 ) default boolean moveOverlay() { return true; } + @ConfigItem( + keyName = "showtotalpoints", + name = "total points NMZ overlay", + description = "shows total points to overlay", + position = 1 + ) + default boolean showtotalpoints() + { + return false; + } + @ConfigItem( keyName = "powersurgenotification", name = "Power surge notification",