From 6fe4425be08747e258e7a53a9e530aab466bd0c4 Mon Sep 17 00:00:00 2001 From: ThatGravyBoat Date: Fri, 16 Jul 2021 02:54:21 -0230 Subject: 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. --- src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/main/java/com/thatgravyboat/skyblockhud/config') 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 { -- cgit