Skip to content

Commit e49a52e

Browse files
committed
Fix new nickname sending
1 parent e74ad78 commit e49a52e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

handlers.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ end
138138

139139
local function needNewNick(conn, msg)
140140
local newnick = conn.nickGenerator(msg.args[2])
141-
conn:queue(msgs.nick(newnick))
141+
conn:queue(irc.msgs.nick(newnick))
142142
end
143143

144144
-- ERR_ERRONEUSNICKNAME (Misspelt but remains for historical reasons)

0 commit comments

Comments
 (0)