aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-03-08 16:08:47 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-03-08 16:08:47 +0100
commit2aa43969da8e5413e25bfa107d60e6a5835ee1e1 (patch)
treeb9a6e71b6951489485a0fb8c9c02e9120925bb9a /src/main/java/at/hannibal2/skyhanni/config/features
parent6a52e0a5c9d168ad0e3ef549f6a77e140f92b174 (diff)
downloadskyhanni-2aa43969da8e5413e25bfa107d60e6a5835ee1e1.tar.gz
skyhanni-2aa43969da8e5413e25bfa107d60e6a5835ee1e1.tar.bz2
skyhanni-2aa43969da8e5413e25bfa107d60e6a5835ee1e1.zip
Add rancher boots speed display and optimal speed display
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Garden.java35
1 files changed, 29 insertions, 6 deletions
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 14858122c..58e014ce9 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java
@@ -156,7 +156,7 @@ public class Garden {
@ConfigOption(name = "Display Position", desc = "")
@ConfigEditorButton(runnableId = "cropMilestoneProgress", buttonText = "Edit")
@ConfigAccordionId(id = 6)
- public Position cropMilestoneProgressDisplayPos = new Position(-363, 12, false, true);
+ public Position cropMilestoneProgressDisplayPos = new Position(376, 19, false, true);
@Expose
@ConfigOption(name = "Best Crop", desc = "")
@@ -206,11 +206,6 @@ public class Garden {
@ConfigAccordionId(id = 7)
public Position cropMilestoneNextDisplayPos = new Position(-112, -143, false, true);
- @Expose
- @ConfigOption(name = "Plot Price", desc = "Show the price of the plot in coins when inside the Configure Plots inventory.")
- @ConfigEditorBoolean
- public boolean plotPrice = true;
-
// TODO moulconfig runnable suppoort
@Expose
@ConfigOption(name = "Custom Keybind", desc = "")
@@ -274,4 +269,32 @@ public class Garden {
@ConfigAccordionId(id = 8)
@ConfigEditorKeybind(defaultKey = Keyboard.KEY_LSHIFT)
public int keyBindSneak = Keyboard.KEY_LSHIFT;
+
+ @Expose
+ @ConfigOption(name = "Optimal Speed", desc = "")
+ @ConfigEditorAccordion(id = 9)
+ public boolean optimalSpeed = false;
+
+ @Expose
+ @ConfigOption(name = "Enabled", desc = "Show the optimal speed for your current tool in the hand. (Ty MelonKingDE for the values)")
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 9)
+ public boolean optimalSpeedEnabled = true;
+
+ @Expose
+ @ConfigOption(name = "Enabled", desc = "Warn via title when you don't have the optimal speed.")
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 9)
+ public boolean optimalSpeedWarning = false;
+
+ @Expose
+ @ConfigOption(name = "Speed Warning Position", desc = "")
+ @ConfigEditorButton(runnableId = "optimalSpeed", buttonText = "Edit")
+ @ConfigAccordionId(id = 9)
+ public Position optimalSpeedPos = new Position(188, -105, false, true);
+
+ @Expose
+ @ConfigOption(name = "Plot Price", desc = "Show the price of the plot in coins when inside the Configure Plots inventory.")
+ @ConfigEditorBoolean
+ public boolean plotPrice = true;
}