From bfa2b37155711e2a907f15d6e56d18378ae4f723 Mon Sep 17 00:00:00 2001 From: ingle Date: Fri, 28 Oct 2022 12:17:26 -0500 Subject: + Efficiency improvements + command for setting leap highlight + (I THINK) abiphone dnd (on by default) --- src/main/kotlin/dulkirmod/config/Config.kt | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'src/main/kotlin/dulkirmod/config') 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 @@ -249,10 +249,18 @@ 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", -- cgit