diff options
author | Sadie Powell <sadie@witchery.services> | 2020-04-02 20:53:23 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2020-04-02 20:53:23 +0100 |
commit | 26ddc3942d5465574a66126033971ee2d0d9c373 (patch) | |
tree | 0b4c1089822bdc8bfb01d52e8473c192aa2a34bb | |
parent | e75b2f92b56c7ccbef4df05462e332f859b983f1 (diff) |
Add constants for the uninvite numerics.
-rw-r--r-- | src/modules/m_uninvite.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/modules/m_uninvite.cpp b/src/modules/m_uninvite.cpp index 198136fa9..d48757ef8 100644 --- a/src/modules/m_uninvite.cpp +++ b/src/modules/m_uninvite.cpp @@ -30,6 +30,8 @@ enum { // InspIRCd-specific. + ERR_INVITEREMOVED = 494, + ERR_NOTINVITED = 505, RPL_UNINVITED = 653 }; @@ -91,14 +93,14 @@ class CommandUninvite : public Command // so they don't see where the target user is connected to if (!invapi->Remove(lu, c)) { - Numeric::Numeric n(505); + Numeric::Numeric n(ERR_NOTINVITED); n.SetServer(user->server); n.push(u->nick).push(c->name).push(InspIRCd::Format("Is not invited to channel %s", c->name.c_str())); user->WriteRemoteNumeric(n); return CMD_FAILURE; } - Numeric::Numeric n(494); + Numeric::Numeric n(ERR_INVITEREMOVED); n.SetServer(user->server); n.push(c->name).push(u->nick).push("Uninvited"); user->WriteRemoteNumeric(n); |