Merge pull request #469 from Blizzard/call-array-fix
fix bug when callArray gets called with nil.
This commit is contained in:
commit
eb4741d6b1
@ -103,8 +103,10 @@
|
||||
if type(funcs) == "function" then
|
||||
funcs = funcs(...)
|
||||
end
|
||||
for i = 1, #funcs do
|
||||
funcs[i](...)
|
||||
if funcs then
|
||||
for i = 1, #funcs do
|
||||
funcs[i](...)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user