This commit is contained in:
Crum
2018-01-30 20:56:03 -06:00
parent 2ca06abbfe
commit 90c2847d81
2 changed files with 6 additions and 6 deletions
@@ -255,11 +255,11 @@ do
end
end
WidgetBase.Fire = function(self,name,argc,...)
WidgetBase.Fire = function(self, name, argc, ...)
argc = table.getn(arg)
local func = self.events[name]
if func then
local success, ret = safecall(func,argc+3,self,name,argc,unpack(arg))
local success, ret = safecall(func, argc+3, self, name, argc, unpack(arg))
if success then
return ret
end