diff options
author | ThatGravyBoat <thatgravyboat@gmail.com> | 2021-07-16 02:54:21 -0230 |
---|---|---|
committer | ThatGravyBoat <thatgravyboat@gmail.com> | 2021-07-16 02:54:21 -0230 |
commit | 6fe4425be08747e258e7a53a9e530aab466bd0c4 (patch) | |
tree | 708022d0eb938feeae0ec7d1d7d8b3924330b37e /src/main/java/com/thatgravyboat/skyblockhud/config | |
parent | a411d15e4d65f4f2776a98edb743c68d294aa9d4 (diff) | |
download | SkyblockHud-Death-Defied-6fe4425be08747e258e7a53a9e530aab466bd0c4.tar.gz SkyblockHud-Death-Defied-6fe4425be08747e258e7a53a9e530aab466bd0c4.tar.bz2 SkyblockHud-Death-Defied-6fe4425be08747e258e7a53a9e530aab466bd0c4.zip |
Added waypoint send command and clickable waypoint chat message
Fixed bug where better together event wouldn't pull number and didnt have its own icon.
Fixed where mithril and gemstone wouldn't get parsed in crystal hollows.
Diffstat (limited to 'src/main/java/com/thatgravyboat/skyblockhud/config')
-rw-r--r-- | src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java b/src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java index 04d4a8c..c04bccc 100644 --- a/src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java +++ b/src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java @@ -334,6 +334,12 @@ public class SBHConfig extends Config { @ConfigOption(name = "Auto Waypoint", desc = "Turns on auto waypoints for the main areas of crystal hollows.") @ConfigEditorBoolean public boolean autoWaypoint = true; + + @Expose + @ConfigOption(name = "Chat Waypoint Mode", desc = "Change the mode of the chat waypoint In Chat Bar will allow you to edit it before adding it to your waypoints.") + @ConfigEditorDropdown(values = { "Instant Add", "In chat bar" }) + public int chatWaypointMode = 1; + } public static class Trackers { |