mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 11:09:04 -04:00
Use ircd-hybrid's numerics for the "pending invites" list.
This fixes a conflict with the numerics used by the invite exception mode.
This commit is contained in:
parent
9822a57460
commit
df17d47b6a
@ -86,8 +86,6 @@ enum
|
|||||||
|
|
||||||
RPL_USERIP = 340,
|
RPL_USERIP = 340,
|
||||||
RPL_INVITING = 341,
|
RPL_INVITING = 341,
|
||||||
RPL_INVITELIST = 346, // insp-specific (stolen from ircu)
|
|
||||||
RPL_ENDOFINVITELIST = 347, // insp-specific (stolen from ircu)
|
|
||||||
RPL_VERSION = 351,
|
RPL_VERSION = 351,
|
||||||
RPL_NAMREPLY = 353,
|
RPL_NAMREPLY = 353,
|
||||||
RPL_LINKS = 364,
|
RPL_LINKS = 364,
|
||||||
|
@ -31,6 +31,13 @@
|
|||||||
#include "core_channel.h"
|
#include "core_channel.h"
|
||||||
#include "invite.h"
|
#include "invite.h"
|
||||||
|
|
||||||
|
enum
|
||||||
|
{
|
||||||
|
// From ircd-hybrid.
|
||||||
|
RPL_INVITELIST = 336,
|
||||||
|
RPL_ENDOFINVITELIST = 337
|
||||||
|
};
|
||||||
|
|
||||||
CommandInvite::CommandInvite(Module* parent, Invite::APIImpl& invapiimpl)
|
CommandInvite::CommandInvite(Module* parent, Invite::APIImpl& invapiimpl)
|
||||||
: Command(parent, "INVITE", 0, 0)
|
: Command(parent, "INVITE", 0, 0)
|
||||||
, invapi(invapiimpl)
|
, invapi(invapiimpl)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user