Merge pull request #469 from Blizzard/call-array-fix

fix bug when callArray gets called with nil.
This commit is contained in:
Jason Perkins 2016-04-07 15:34:15 -04:00
commit eb4741d6b1

View File

@ -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