EventEmitter: fix luacheck error

This commit is contained in:
Starbeamrainbowlabs 2023-11-28 00:33:27 +00:00
parent 757f6de3b5
commit 6d03a5ca2c
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ end
-- @param args table|any The argument(s) to pass to listener functions. It is strongly advised you pass a table here.
function EventEmitter.emit(this, event_name, args)
if this.debug then
listeners = 0
local listeners = 0
if this.events[event_name] ~= nil then listeners = #this.events[event_name] end
print("DEBUG:EventEmitter emit", event_name, "listeners", listeners, "args", wea_c.inspect(args))
end