diff options
| author | 2013-11-12 06:51:31 -0500 | |
|---|---|---|
| committer | 2013-11-12 06:51:31 -0500 | |
| commit | 6c7a3ceb6c674a9af09da955ee0238e9291cf29a (patch) | |
| tree | c9fd79d5814685e43f5d9ade75cad5f11da06364 /src/modules/m_cycle.cpp | |
| parent | Merge pull request #672 from SaberUK/master+rt-link-err (diff) | |
Use WriteNumeric() everywhere we send numerics and include the user's nick automatically
Diffstat (limited to 'src/modules/m_cycle.cpp')
| -rw-r--r-- | src/modules/m_cycle.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_cycle.cpp b/src/modules/m_cycle.cpp index 4a7b0f644..3dd4f41c7 100644 --- a/src/modules/m_cycle.cpp +++ b/src/modules/m_cycle.cpp @@ -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; |
