aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_cycle.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2020-10-26 23:40:24 +0000
committerGravatar Sadie Powell2020-10-27 00:59:11 +0000
commit7cb27dabe695505d2eb7b942c4fbf518dda8e6b3 (patch)
tree12f7541d3389efa9a084d2a4859d6ce4ede43b03 /src/modules/m_cycle.cpp
parentReplace the check for eventfd() with a C++17 header check. (diff)
downloadinspircd++-7cb27dabe695505d2eb7b942c4fbf518dda8e6b3.tar.gz
inspircd++-7cb27dabe695505d2eb7b942c4fbf518dda8e6b3.tar.bz2
inspircd++-7cb27dabe695505d2eb7b942c4fbf518dda8e6b3.zip
Convert CmdResult to an 8-bit strongly typed enum.
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;
}
};