Fix issue with who ignored
This commit is contained in:
@@ -254,7 +254,7 @@ function shared.Whoer.Init()
|
|||||||
|
|
||||||
for i = 1, GetNumWhoResults() do
|
for i = 1, GetNumWhoResults() do
|
||||||
local name, guild, level, race, class, zone = GetWhoInfo(i)
|
local name, guild, level, race, class, zone = GetWhoInfo(i)
|
||||||
if Heimdall_Data.who.ignored[name] then return end
|
if Heimdall_Data.config.who.ignored[name] then return end
|
||||||
local continue = false
|
local continue = false
|
||||||
|
|
||||||
---@type WHOFilter[]
|
---@type WHOFilter[]
|
||||||
|
@@ -43,7 +43,7 @@ local config = {
|
|||||||
},
|
},
|
||||||
who = {
|
who = {
|
||||||
enabled = aura_env.config.who.enabled,
|
enabled = aura_env.config.who.enabled,
|
||||||
ignored = aura_env.config.who.ignored,
|
ignored = StringToMap(aura_env.config.who.ignored),
|
||||||
notifyChannel = aura_env.config.who.notifyChannel,
|
notifyChannel = aura_env.config.who.notifyChannel,
|
||||||
ttl = aura_env.config.who.ttl,
|
ttl = aura_env.config.who.ttl,
|
||||||
doWhisper = aura_env.config.who.doWhisper,
|
doWhisper = aura_env.config.who.doWhisper,
|
||||||
|
Reference in New Issue
Block a user