1
0
mirror of https://github.com/ShadowNinja/LuaIRC.git synced 2025-07-20 08:30:28 +02:00

1 Commits

Author SHA1 Message Date
b8d594e651 Allow nil Message args 2015-02-16 20:17:50 -05:00

View File

@ -48,7 +48,7 @@ function msg_meta:toRFC1459()
s = s..self.command
local argnum = #self.args
local argnum = self.args and #self.args or 0
for i = 1, argnum do
local arg = self.args[i]
local startsWithColon = (arg:sub(1, 1) == ":")