Update config
This commit is contained in:
@@ -51,12 +51,13 @@ local config = {
|
||||
},
|
||||
messenger = {
|
||||
enabled = aura_env.config.messenger.enabled,
|
||||
interval = aura_env.config.messenger.interval,
|
||||
},
|
||||
deathReporter = {
|
||||
enabled = aura_env.config.deathReporter.enabled,
|
||||
throttle = aura_env.config.deathReporter.throttle,
|
||||
doWhisper = aura_env.config.deathReporter.doWhisper,
|
||||
notifyChannel = aura_env.config.deathReporter.notifyChannel2,
|
||||
notifyChannel = aura_env.config.deathReporter.notifyChannel,
|
||||
zoneOverride = aura_env.config.deathReporter.zoneOverride,
|
||||
duelThrottle = aura_env.config.deathReporter.duelThrottle,
|
||||
},
|
||||
@@ -66,16 +67,50 @@ local config = {
|
||||
enabled = aura_env.config.inviter.enabled,
|
||||
listeningChannel = aura_env.config.inviter.listeningChannel,
|
||||
keyword = aura_env.config.inviter.keyword,
|
||||
updateInterval = aura_env.config.inviter.updateInterval,
|
||||
whitelist = StringToArray(aura_env.config.inviter.whitelist),
|
||||
}
|
||||
},
|
||||
dueler = {
|
||||
enabled = aura_env.config.dueler.enabled,
|
||||
declineOther = aura_env.config.dueler.declineOther,
|
||||
},
|
||||
bully = {
|
||||
enabled = aura_env.config.bully.enabled,
|
||||
},
|
||||
}
|
||||
DevTools_Dump(config)
|
||||
|
||||
--Heimdall_Data.config.spotter = config.spotter
|
||||
--Heimdall_Data.config.who = config.who
|
||||
--Heimdall_Data.config.messenger = config.messenger
|
||||
--Heimdall_Data.config.deathReporter = config.deathReporter
|
||||
--Heimdall_Data.config.inviter = config.inviter
|
||||
--Heimdall_Data.config.whisperNotify = config.whisperNotify
|
||||
--Heimdall_Data.config.stinkies = config.stinkies
|
||||
Heimdall_Data.config.spotter.enabled = config.spotter.enabled
|
||||
Heimdall_Data.config.spotter.everyone = config.spotter.everyone
|
||||
Heimdall_Data.config.spotter.hostile = config.spotter.hostile
|
||||
Heimdall_Data.config.spotter.alliance = config.spotter.alliance
|
||||
Heimdall_Data.config.spotter.stinky = config.spotter.stinky
|
||||
Heimdall_Data.config.spotter.notifyChannel = config.spotter.notifyChannel
|
||||
Heimdall_Data.config.spotter.zoneOverride = config.spotter.zoneOverride
|
||||
Heimdall_Data.config.spotter.throttleTime = config.spotter.throttleTime
|
||||
|
||||
Heimdall_Data.config.who.enabled = config.who.enabled
|
||||
Heimdall_Data.config.who.ignored = config.who.ignored
|
||||
Heimdall_Data.config.who.notifyChannel = config.who.notifyChannel
|
||||
Heimdall_Data.config.who.ttl = config.who.ttl
|
||||
Heimdall_Data.config.who.doWhisper = config.who.doWhisper
|
||||
Heimdall_Data.config.who.zoneNotifyFor = config.who.zoneNotifyFor
|
||||
|
||||
Heimdall_Data.config.messenger.enabled = config.messenger.enabled
|
||||
Heimdall_Data.config.messenger.interval = config.messenger.interval
|
||||
|
||||
Heimdall_Data.config.deathReporter.enabled = config.deathReporter.enabled
|
||||
Heimdall_Data.config.deathReporter.throttle = config.deathReporter.throttle
|
||||
Heimdall_Data.config.deathReporter.doWhisper = config.deathReporter.doWhisper
|
||||
Heimdall_Data.config.deathReporter.notifyChannel = config.deathReporter.notifyChannel
|
||||
Heimdall_Data.config.deathReporter.zoneOverride = config.deathReporter.zoneOverride
|
||||
Heimdall_Data.config.deathReporter.duelThrottle = config.deathReporter.duelThrottle
|
||||
|
||||
Heimdall_Data.config.inviter.enabled = config.inviter.enabled
|
||||
Heimdall_Data.config.inviter.listeningChannel = config.inviter.listeningChannel
|
||||
Heimdall_Data.config.inviter.keyword = config.inviter.keyword
|
||||
|
||||
Heimdall_Data.config.dueler.enabled = config.dueler.enabled
|
||||
Heimdall_Data.config.dueler.declineOther = config.dueler.declineOther
|
||||
|
||||
Heimdall_Data.config.bully.enabled = config.bully.enabled
|
||||
|
||||
Heimdall_Data.config.whisperNotify = config.whisperNotify
|
||||
Heimdall_Data.config.stinkies = config.stinkies
|
||||
|
||||
Reference in New Issue
Block a user