5.19.10
This commit is contained in:
@@ -326,7 +326,7 @@ local sorters = {
|
||||
end,
|
||||
custom = function(data)
|
||||
local sortStr = data.customSort or ""
|
||||
local sortFunc = WeakAuras.LoadFunction("return " .. sortStr) or noop
|
||||
local sortFunc = WeakAuras.LoadFunction("return " .. sortStr, data.id) or noop
|
||||
local sortOn = nil
|
||||
local events = WeakAuras.split(data.sortOn or "")
|
||||
if #events > 0 then
|
||||
@@ -415,7 +415,7 @@ local anchorers = {
|
||||
end,
|
||||
["CUSTOM"] = function(data)
|
||||
local anchorStr = data.customAnchorPerUnit or ""
|
||||
local anchorFunc = WeakAuras.LoadFunction("return " .. anchorStr) or noop
|
||||
local anchorFunc = WeakAuras.LoadFunction("return " .. anchorStr, data.id) or noop
|
||||
|
||||
local anchorOn = nil
|
||||
local events = WeakAuras.split(data.anchorOn or "")
|
||||
@@ -971,7 +971,7 @@ local growers = {
|
||||
end,
|
||||
CUSTOM = function(data)
|
||||
local growStr = data.customGrow or ""
|
||||
local growFunc = WeakAuras.LoadFunction("return " .. growStr) or noop
|
||||
local growFunc = WeakAuras.LoadFunction("return " .. growStr, data.id) or noop
|
||||
local growOn = nil
|
||||
local events = WeakAuras.split(data.growOn or "")
|
||||
if #events > 0 then
|
||||
|
||||
Reference in New Issue
Block a user