aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/thatgravyboat/skyblockhud/config
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/thatgravyboat/skyblockhud/config')
-rw-r--r--src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java13
1 files changed, 13 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 f26bef3..3f0f452 100644
--- a/src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java
+++ b/src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java
@@ -59,6 +59,9 @@ public class SBHConfig extends Config {
case "heat":
editOverlay(activeConfigCategory, 45, 7, mining.heatBar);
return;
+ case "dialogue":
+ editOverlay(activeConfigCategory, 182, 68, misc.dialoguePos);
+ return;
}
}
@@ -105,6 +108,16 @@ public class SBHConfig extends Config {
@ConfigOption(name = "Bar Textures", desc = "Change the style of bars. Dont change this unless the pack ur using tells you can.")
@ConfigEditorDropdown(values = { "Style 1", "Style 2" })
public int barTexture = 0;
+
+ @Expose
+ @ConfigOption(name = "Hide Dialogue Box", desc = "Hides the Dialogue Box.")
+ @ConfigEditorBoolean
+ public boolean hideDialogueBox = true;
+
+ @Expose
+ @ConfigOption(name = "Dialogue Box", desc = "")
+ @ConfigEditorButton(runnableId = "dialogue", buttonText = "Edit")
+ public Position dialoguePos = new Position(0, -50, true, false);
}
public static class MainHud {