diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-15 16:42:11 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-15 16:42:11 +0100 |
commit | ecdd0502e7aef26b1fba17f763d769b25c1a34d4 (patch) | |
tree | 70dc3c90acf29544e9c11d2f88ff1503f68cb595 /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | 1f220684fc455edfc9f202d8c7ab61dfaf875e1d (diff) | |
download | skyhanni-ecdd0502e7aef26b1fba17f763d769b25c1a34d4.tar.gz skyhanni-ecdd0502e7aef26b1fba17f763d769b25c1a34d4.tar.bz2 skyhanni-ecdd0502e7aef26b1fba17f763d769b25c1a34d4.zip |
Added option to calculate with fix Blocks per Second values for all crops in Time Needed for Medal GUI.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/GardenConfig.java | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/GardenConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/GardenConfig.java index a5d9847ca..6b563c5cc 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/GardenConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/GardenConfig.java @@ -1433,14 +1433,34 @@ public class GardenConfig { @Expose @ConfigOption( - name = "Contest Time Needed", - desc = "Show the time and missing FF for every crop inside Jacob's Farming Contest inventory." + name = "Contest Time Needed", + desc = "Show the time and missing FF for every crop inside Jacob's Farming Contest inventory." ) @ConfigEditorBoolean @FeatureToggle + // TODO rename to jacobContestTimes public boolean jacobContextTimes = true; @Expose + @ConfigOption( + name = "Assume Fix BPS", + desc = "Use a fixed Block Per Seconds value for the Contest Time Needed and Contest Summary Feature. When disabled, using the last tracked BPS value." + ) + @ConfigEditorBoolean + public boolean jacobContestAssumeFixBps = true; + + // TODO moulconfig runnable support + @Expose + @ConfigOption(name = "Fix BPS Value", desc = "Set your fix Blocks per Second here.") + @ConfigEditorSlider( + minValue = 15, + maxValue = 20, + minStep = 0.1f + ) + public double jacobContestAssumeFixBpsValue = 19.9; + + @Expose + // TODO rename to jacobContestTimesPos public Position jacobContextTimesPos = new Position(-359, 149, false, true); @Expose |