]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_cycle.cpp
m_auditorium Switch to SimpleChannelModeHandler
[user/henk/code/inspircd.git] / src / modules / m_cycle.cpp
index 4a7b0f64421acb1e4bfabd1ec573a545ea5dc18b..3dd4f41c70f54580f5143ddb2866f4e08800809d 100644 (file)
@@ -44,7 +44,7 @@ class CommandCycle : public SplitCommand
 
                if (!channel)
                {
-                       user->WriteNumeric(403, "%s %s :No such channel", user->nick.c_str(), parameters[0].c_str());
+                       user->WriteNumeric(ERR_NOSUCHCHANNEL, "%s :No such channel", parameters[0].c_str());
                        return CMD_FAILURE;
                }
 
@@ -70,7 +70,7 @@ class CommandCycle : public SplitCommand
                }
                else
                {
-                       user->WriteNumeric(442, "%s %s :You're not on that channel", user->nick.c_str(), channel->name.c_str());
+                       user->WriteNumeric(ERR_NOTONCHANNEL, "%s :You're not on that channel", channel->name.c_str());
                }
 
                return CMD_FAILURE;