aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/thatgravyboat/skyblockhud/config
diff options
context:
space:
mode:
authorThatGravyBoat <thatgravyboat@gmail.com>2021-07-13 01:51:19 -0230
committerThatGravyBoat <thatgravyboat@gmail.com>2021-07-13 01:51:19 -0230
commit3bd212839e1d3c497a840221a0c149451967467e (patch)
tree9a306491b76808a17a26c6bef6f74c08cbc99964 /src/main/java/com/thatgravyboat/skyblockhud/config
parent087d97fb0663edc5e343187c0fa4ec1bc6b081bc (diff)
downloadSkyblockHud-Death-Defied-3bd212839e1d3c497a840221a0c149451967467e.tar.gz
SkyblockHud-Death-Defied-3bd212839e1d3c497a840221a0c149451967467e.tar.bz2
SkyblockHud-Death-Defied-3bd212839e1d3c497a840221a0c149451967467e.zip
Added 2 new subcommands to crystal waypoints, Added medals shown in farmhouse, Added config option to stop auto flipping of rpg hud, Added option so if exp bar is still being rendered it should hide when holding drill to not overlay them and keep a consistent hud
Diffstat (limited to 'src/main/java/com/thatgravyboat/skyblockhud/config')
-rw-r--r--src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java16
1 files changed, 13 insertions, 3 deletions
diff --git a/src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java b/src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java
index db3e6df..8d84833 100644
--- a/src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java
+++ b/src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java
@@ -81,8 +81,8 @@ public class SBHConfig extends Config {
public Map map = new Map();
@Expose
- @Category(name = "Mining Hud", desc = "All Options for the Mining Hud.")
- public MiningHud miningHud = new MiningHud();
+ @Category(name = "Mining", desc = "All Options for the Mining Stuff.")
+ public Mining mining = new Mining();
//TODO ENABLED WHEN TRACKER GETS ADDED BACK
// @Expose
@@ -128,6 +128,11 @@ public class SBHConfig extends Config {
public boolean showRpgHud = true;
@Expose
+ @ConfigOption(name = "Flip Hud", desc = "Flips the hud when half way across the screen.")
+ @ConfigEditorBoolean
+ public boolean flipHud = true;
+
+ @Expose
@ConfigOption(name = "RPG Hud Position", desc = "Allows you to change the position of the RPG Hud.")
@ConfigEditorButton(runnableId = "rpg", buttonText = "Edit")
public Position rpgHudPosition = new Position(1, 1);
@@ -309,7 +314,7 @@ public class SBHConfig extends Config {
public boolean showQuestIcons = false;
}
- public static class MiningHud {
+ public static class Mining {
@Expose
@ConfigOption(name = "Show Drill Bar", desc = "Allows you to show or hide the Drill Bar.")
@@ -320,6 +325,11 @@ public class SBHConfig extends Config {
@ConfigOption(name = "Show Heat Bar", desc = "Allows you to show or hide the Heat Bar.")
@ConfigEditorBoolean
public boolean showHeatBar = true;
+
+ @Expose
+ @ConfigOption(name = "Auto Waypoint", desc = "Turns on auto waypoints for the main areas of crystal hollows.")
+ @ConfigEditorBoolean
+ public boolean autoWaypoint = true;
}
public static class Trackers {