aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_cycle.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/m_cycle.cpp')
-rw-r--r--src/modules/m_cycle.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/m_cycle.cpp b/src/modules/m_cycle.cpp
index bfc9ffc76..05ca78436 100644
--- a/src/modules/m_cycle.cpp
+++ b/src/modules/m_cycle.cpp
@@ -54,7 +54,7 @@ class CommandCycle : public SplitCommand
if (!channel)
{
user->WriteNumeric(Numerics::NoSuchChannel(parameters[0]));
- return CMD_FAILURE;
+ return CmdResult::FAILURE;
}
if (channel->HasUser(user))
@@ -63,20 +63,20 @@ class CommandCycle : public SplitCommand
{
// User is banned, send an error and don't cycle them
user->WriteNotice("*** You may not cycle, as you are banned on channel " + channel->name);
- return CMD_FAILURE;
+ return CmdResult::FAILURE;
}
channel->PartUser(user, reason);
Channel::JoinUser(user, parameters[0], true);
- return CMD_SUCCESS;
+ return CmdResult::SUCCESS;
}
else
{
user->WriteNumeric(ERR_NOTONCHANNEL, channel->name, "You're not on that channel");
}
- return CMD_FAILURE;
+ return CmdResult::FAILURE;
}
};