From e1a4e3db0b3033b4099d77f0bb7d08b60f2c7a73 Mon Sep 17 00:00:00 2001 From: inglettronald Date: Tue, 21 Mar 2023 01:15:45 -0500 Subject: dragon stuff and some random things i forget --- src/main/kotlin/dulkirmod/config/Config.kt | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'src/main/kotlin/dulkirmod/config/Config.kt') diff --git a/src/main/kotlin/dulkirmod/config/Config.kt b/src/main/kotlin/dulkirmod/config/Config.kt index 7f914e1..8fe611d 100644 --- a/src/main/kotlin/dulkirmod/config/Config.kt +++ b/src/main/kotlin/dulkirmod/config/Config.kt @@ -123,6 +123,22 @@ object Config : Vigilant(File("./config/dulkirmod/config.toml"), "DulkirMod", so ) var throttleNotifierSpam = true + @Property( + type = PropertyType.SWITCH, + name = "M7 Dragon Timer", + description = "Helps u arrow stack ig", + category = "Dungeons" + ) + var dragonTimer = true + + @Property( + type = PropertyType.SWITCH, + name = "Better M7 Dragon Killbox", + description = "Mostly stolen from odin", + category = "Dungeons" + ) + var dragonKillBox = true + @Property( type = PropertyType.SWITCH, name = "Hide Extra Nametags", @@ -570,6 +586,14 @@ object Config : Vigilant(File("./config/dulkirmod/config.toml"), "DulkirMod", so ) var defaultSens = .7f + @Property( + type = PropertyType.SWITCH, + name = "Turn off re-equip animation", + description = "Will stop the spam re-equip when stuff like cultivating is updating", + category = "Animations" + ) + var cancelReequip = false + fun init() { initialize() addDependency("customMessage", "throttleNotifier") -- cgit