diff options
author | inglettronald <inglettronald@gmail.com> | 2023-02-28 18:07:08 -0600 |
---|---|---|
committer | inglettronald <inglettronald@gmail.com> | 2023-02-28 18:07:08 -0600 |
commit | 890f44737371973c2c339292c1279b1ee1858357 (patch) | |
tree | 10343d16a0e663e845061ab0f155815d36cdd33d /src/main/kotlin/dulkirmod/config | |
parent | f8e29c3a1b18aa0587f102167ab5f6b5a43a5607 (diff) | |
download | DulkirMod-890f44737371973c2c339292c1279b1ee1858357.tar.gz DulkirMod-890f44737371973c2c339292c1279b1ee1858357.tar.bz2 DulkirMod-890f44737371973c2c339292c1279b1ee1858357.zip |
added persistent visitor alert
Diffstat (limited to 'src/main/kotlin/dulkirmod/config')
-rw-r--r-- | src/main/kotlin/dulkirmod/config/Config.kt | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/main/kotlin/dulkirmod/config/Config.kt b/src/main/kotlin/dulkirmod/config/Config.kt index 6fcf41e..4d490bd 100644 --- a/src/main/kotlin/dulkirmod/config/Config.kt +++ b/src/main/kotlin/dulkirmod/config/Config.kt @@ -546,11 +546,19 @@ object Config : Vigilant(File("./config/dulkirmod/config.toml"), "DulkirMod", so @Property( type = PropertyType.SWITCH, name = "Garden Visitor Alert", - description = "Notifies you if you have 5/5 garden visitors in queue", + description = "Notifies you if you have max garden visitors in queue", category = "Farming" ) var notifyMaxVisitors = false + @Property( + type = PropertyType.SWITCH, + name = "Persistent alert", + description = "If turned on, the alert will continue to flash until dealt with.", + category = "Farming" + ) + var persistentAlert = true + fun init() { initialize() addDependency("customMessage", "throttleNotifier") @@ -561,6 +569,7 @@ object Config : Vigilant(File("./config/dulkirmod/config.toml"), "DulkirMod", so addDependency("abiCallerID", "abiDND") addDependency("hurtCamIntensity", "hurtCamSlider") addDependency("tooltipSize", "scaledTooltips") + addDependency("persistentAlert", "notifyMaxVisitors") setCategoryDescription( "Custom Animations", |