From 9411e33dd4ceb2c7a314c389deeb22ff2e1aa51d Mon Sep 17 00:00:00 2001 From: Lorenz Date: Tue, 23 Aug 2022 23:37:38 +0200 Subject: added minion hopper coins per day display --- .../at/hannibal2/skyhanni/config/features/Minions.java | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Minions.java b/src/main/java/at/hannibal2/skyhanni/config/features/Minions.java index 016d5f6d2..318b16555 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Minions.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Minions.java @@ -1,5 +1,6 @@ package at.hannibal2.skyhanni.config.features; +import at.hannibal2.skyhanni.config.gui.core.config.Position; import at.hannibal2.skyhanni.config.gui.core.config.annotations.*; import com.google.gson.annotations.Expose; @@ -64,4 +65,20 @@ public class Minions { @ConfigOption(name = "Hide Mob Nametag", desc = "Hiding the nametag of mobs close to minions") @ConfigEditorBoolean public boolean hideMobsNametagNearby = false; + + @ConfigOption(name = "Hopper Profit", desc = "") + @ConfigEditorAccordion(id = 2) + public boolean hopperProfit = false; + + @Expose + @ConfigOption(name = "Hopper Profit Display", desc = "Using the held coins and the last empty time to calculate the coins a hopper collects in a day") + @ConfigEditorBoolean + @ConfigAccordionId(id = 2) + public boolean hopperProfitDisplay = false; + + @Expose + @ConfigOption(name = "Best Sell Method Position", desc = "") + @ConfigEditorButton(runnableId = "hopperProfitDisplay", buttonText = "Edit") + @ConfigAccordionId(id = 2) + public Position hopperProfitPos = new Position(10, 10, false, true); } -- cgit