From 78d18dd18ee29a07ce128b4a0b707bc9585ed89f Mon Sep 17 00:00:00 2001 From: jluehrs2 Date: Tue, 4 Sep 2007 20:28:22 -0500 Subject: callback shouldn't be just "dcc" since it only happens on DCC SEND --- src/irc.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/irc.lua b/src/irc.lua index 40df543..d8a1880 100644 --- a/src/irc.lua +++ b/src/irc.lua @@ -513,7 +513,7 @@ end function ctcp_handlers.on_dcc(from, to, message) local type, argument, address, port, size = base.unpack(misc._split(message, " ", nil, '"', '"')) if type == "SEND" then - if callback("dcc", from, to, argument, address, port, size) then + if callback("dcc_send", from, to, argument, address, port, size) then dcc._accept(argument, address, port) end elseif type == "CHAT" then -- cgit v1.2.3-54-g00ecf