Add config options for the 2 new modules added in previous commit

This commit is contained in:
2025-01-06 01:18:10 +01:00
parent ca30998a5a
commit 784cee6f04
2 changed files with 15 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@@ -105,6 +105,14 @@ local config = {
commander = aura_env.config.commander.commander,
commands = StringToMap(aura_env.config.commander.commands, ","),
},
combatAlerter = {
enabled = aura_env.config.combatAlerter.enabled,
masterChannel = aura_env.config.combatAlerter.masterChannel,
},
stinkyTracker = {
enabled = aura_env.config.stinkyTracker.enabled,
masterChannel = aura_env.config.stinkyTracker.masterChannel,
},
}
Heimdall_Data.config.spotter.enabled = config.spotter.enabled
@@ -167,5 +175,11 @@ Heimdall_Data.config.commander.masterChannel = config.commander.masterChannel
Heimdall_Data.config.commander.commander = config.commander.commander
Heimdall_Data.config.commander.commands = config.commander.commands
Heimdall_Data.config.combatAlerter.enabled = config.combatAlerter.enabled
Heimdall_Data.config.combatAlerter.masterChannel = config.combatAlerter.masterChannel
Heimdall_Data.config.stinkyTracker.enabled = config.stinkyTracker.enabled
Heimdall_Data.config.stinkyTracker.masterChannel = config.stinkyTracker.masterChannel
Heimdall_Data.config.whisperNotify = config.whisperNotify
Heimdall_Data.config.stinkies = config.stinkies