aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/dulkirmod/config
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/dulkirmod/config')
-rw-r--r--src/main/kotlin/dulkirmod/config/Config.kt11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/main/kotlin/dulkirmod/config/Config.kt b/src/main/kotlin/dulkirmod/config/Config.kt
index 4d490bd..7f914e1 100644
--- a/src/main/kotlin/dulkirmod/config/Config.kt
+++ b/src/main/kotlin/dulkirmod/config/Config.kt
@@ -559,6 +559,17 @@ object Config : Vigilant(File("./config/dulkirmod/config.toml"), "DulkirMod", so
)
var persistentAlert = true
+ @Property(
+ type = PropertyType.DECIMAL_SLIDER,
+ name = "Default Sensitivity",
+ description = "For use with the /farmcontrols command toggle",
+ category = "Farming",
+ minF = 0f,
+ maxF = 2f,
+ decimalPlaces = 2
+ )
+ var defaultSens = .7f
+
fun init() {
initialize()
addDependency("customMessage", "throttleNotifier")