From 04b753d7ffe03e7418a4f657ab8affe53b940d0e Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Tue, 26 Sep 2023 08:23:45 +0200 Subject: Changed the option in pet experience tooltip to show progress to level 100 for golden dragon eggs (can be disabled) --- src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/config') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java index f2176badc..10bae9f74 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java @@ -45,9 +45,9 @@ public class MiscConfig { public boolean showAlways = false; @Expose - @ConfigOption(name = "GDrag 200", desc = "Show for Golden Dragon the exp needed for level 200.") + @ConfigOption(name = "Dragon Egg", desc = "For an Golden Dragon Egg, show progress to level 100 instead of 200.") @ConfigEditorBoolean - public boolean goldenDragon200 = true; + public boolean showGoldenDragonEgg = true; } -- cgit