diff options
Diffstat (limited to 'src/main/kotlin/com/ambientaddons/config')
-rw-r--r-- | src/main/kotlin/com/ambientaddons/config/Config.kt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/kotlin/com/ambientaddons/config/Config.kt b/src/main/kotlin/com/ambientaddons/config/Config.kt index a0f7c32..df56ea7 100644 --- a/src/main/kotlin/com/ambientaddons/config/Config.kt +++ b/src/main/kotlin/com/ambientaddons/config/Config.kt @@ -20,6 +20,7 @@ object Config : Vigilant( var autoTrapper = false var trapperEsp = false var trapperCooldown = 0 + var finneganActive = false var crimsonNotify = false var crimsonColor = Color.CYAN @@ -106,6 +107,11 @@ object Config : Vigilant( name = "Highlight trapper animals", description = "Highlights trapper quests with a beacon beam and box. Legal, as Hypixel uses the glowing status effect for clients that support it." ) + switch( + ::finneganActive, + name = "Finnegan active", + description = "Toggle whether Finnegan is active (30 second cooldown). This will be replaced with an API check in the future." + ) selector( ::trapperCooldown, name = "Show trapper cooldown", |