From 6e0c30ab39b7836e0614e167b4c1dcf705bb6e7e Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Mon, 17 Apr 2023 22:15:34 +0200 Subject: Added option to hide the title of money per hour entirely --- src/main/java/at/hannibal2/skyhanni/config/features/Garden.java | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java index 8e6ce0968..e37f3ecae 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java @@ -662,6 +662,14 @@ public class Garden { @ConfigAccordionId(id = 13) public boolean moneyPerHourMergeSeeds = true; + @Expose + @ConfigOption( + name = "Hide Title", + desc = "Hides the first line of 'Money Per Hour' entirely.") + @ConfigEditorBoolean + @ConfigAccordionId(id = 13) + public boolean moneyPerHourHideTitle = false; + @Expose public Position moneyPerHourPos = new Position(16, -232, false, true); -- cgit