summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/coremods/core_channel/cmd_invite.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/coremods/core_channel/cmd_invite.cpp b/src/coremods/core_channel/cmd_invite.cpp
index a17d7e68b..b12192b3a 100644
--- a/src/coremods/core_channel/cmd_invite.cpp
+++ b/src/coremods/core_channel/cmd_invite.cpp
@@ -31,6 +31,13 @@
#include "core_channel.h"
#include "invite.h"
+enum
+{
+ // From ircd-hybrid.
+ RPL_INVITELIST = 336,
+ RPL_ENDOFINVITELIST = 337
+};
+
CommandInvite::CommandInvite(Module* parent, Invite::APIImpl& invapiimpl)
: Command(parent, "INVITE", 0, 0)
, invapi(invapiimpl)