diff options
author | ingle <inglettronald@gmail.com> | 2022-10-28 12:17:26 -0500 |
---|---|---|
committer | ingle <inglettronald@gmail.com> | 2022-10-28 12:17:26 -0500 |
commit | bfa2b37155711e2a907f15d6e56d18378ae4f723 (patch) | |
tree | ffae5faade666c6ed631f8f8c438def680c9fc27 /src/main/kotlin/dulkirmod/config | |
parent | fba8ecf8f06c03c36c8d4823fe5e5928bad98d32 (diff) | |
download | DulkirMod-bfa2b37155711e2a907f15d6e56d18378ae4f723.tar.gz DulkirMod-bfa2b37155711e2a907f15d6e56d18378ae4f723.tar.bz2 DulkirMod-bfa2b37155711e2a907f15d6e56d18378ae4f723.zip |
+ Efficiency improvements
+ command for setting leap highlight
+ (I THINK) abiphone dnd (on by default)
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 df69eca..d300b85 100644 --- a/src/main/kotlin/dulkirmod/config/Config.kt +++ b/src/main/kotlin/dulkirmod/config/Config.kt @@ -250,9 +250,17 @@ object Config : Vigilant(File("./config/dulkirmod/config.toml"), "DulkirMod", so var hideOpenedChests = false @Property( + type = PropertyType.SWITCH, + name = "Highlight custom player for leap in menu", + description = "changes texture to green wool!", + category = "Dungeons" + ) + var highlightLeap = false + + @Property( type = PropertyType.TEXT, name = "Highlighted player name", - description = "Not case-sensitive", + description = "case-sensitive", category = "Dungeons", placeholder = "Dilkur", protectedText = false @@ -460,6 +468,7 @@ object Config : Vigilant(File("./config/dulkirmod/config.toml"), "DulkirMod", so addDependency("throttleNotifierSpam", "throttleNotifier") addDependency("bestiaryNotifVol", "bestiaryAlertSounds") addDependency("demoVolume", "bestiaryAlertSounds") + addDependency("highlightLeapName", "highlightLeap") setCategoryDescription( "Custom Animations", |