mirror of
https://github.com/Bluewhale1337/ElvUIModernized.git
synced 2026-07-27 08:24:44 +00:00
Fix: memory leak connected to lua 5.0 vaarargs
This commit is contained in:
@@ -368,9 +368,9 @@ local function onUpdate(self, elapsed)
|
||||
end
|
||||
end
|
||||
|
||||
local function Update(self, ...)
|
||||
SPELLCAST_START(self, unpack(arg))
|
||||
return SPELLCAST_CHANNEL_START(self, unpack(arg))
|
||||
local function Update(self, event, a, b, c, d, e)
|
||||
SPELLCAST_START(self, event, a, b, c, d, e)
|
||||
return SPELLCAST_CHANNEL_START(self, event, a, b, c, d, e)
|
||||
end
|
||||
|
||||
local function ForceUpdate(element)
|
||||
|
||||
Reference in New Issue
Block a user