aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/dulkirmod/config/Config.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/dulkirmod/config/Config.kt')
-rw-r--r--src/main/kotlin/dulkirmod/config/Config.kt16
1 files changed, 11 insertions, 5 deletions
diff --git a/src/main/kotlin/dulkirmod/config/Config.kt b/src/main/kotlin/dulkirmod/config/Config.kt
index 71f7fe0..a409d91 100644
--- a/src/main/kotlin/dulkirmod/config/Config.kt
+++ b/src/main/kotlin/dulkirmod/config/Config.kt
@@ -176,12 +176,13 @@ object Config : Vigilant(File("./config/dulkirmod/config.toml"), "DulkirMod") {
var ignoreHaste = true
@Property(
- type = PropertyType.CHECKBOX,
- name = "Rotationless Drink",
- description = "Stops you from breaking your arm every time you get thirsty",
- category = "Animations"
+ type = PropertyType.SELECTOR,
+ name = "Drinking Fix",
+ description = "Pick how to handle drinking animations.",
+ category = "Animations",
+ options = ["No fix", "Rotationless", "Fixed"]
)
- var rotationlessdrink = true
+ var drinkingSelector = 2
@Property(
type = PropertyType.BUTTON,
@@ -206,6 +207,11 @@ object Config : Vigilant(File("./config/dulkirmod/config.toml"), "DulkirMod") {
fun init() {
initialize()
addDependency("customMessage", "throttleNotifier")
+
+ setCategoryDescription(
+ "Custom Animations",
+ "All settings that are related to custom animations. Mostly help from Aton."
+ )
}
}