Skip to content

Commit

Permalink
no longer recurse on each child
Browse files Browse the repository at this point in the history
  • Loading branch information
jjholleman committed Feb 2, 2024
1 parent 9a842c5 commit c3df2df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WeakAuras/WeakAuras.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5889,7 +5889,7 @@ function Private.ExecEnv.ParseZoneCheck(input)
self.zoneGroupIds[id] = true
elseif prevChar == 'p' or prevChar == 'P' then
self.zoneIds[id] = true
local info = C_Map.GetMapChildrenInfo(id, nil, true)
local info = C_Map.GetMapChildrenInfo(id)
for _,childInfo in pairs(info) do
self.zoneIds[childInfo.mapID] = true
end
Expand Down

0 comments on commit c3df2df

Please sign in to comment.