1
0
mirror of https://github.com/anope/anope.git synced 2026-06-26 10:36:38 +02:00

Track plexus umode and cmode +C and renamed UMODE_NO_CTCP to match up with the names of other modes.

This commit is contained in:
Adam
2012-02-26 19:49:02 -05:00
parent e73013830d
commit 07226feec4
3 changed files with 5 additions and 3 deletions
+2
View File
@@ -593,6 +593,7 @@ class ProtoPlexus : public Module
ModeManager::AddUserMode(new UserMode(UMODE_OPER, 'o'));
ModeManager::AddUserMode(new UserMode(UMODE_SNOMASK, 's'));
ModeManager::AddUserMode(new UserMode(UMODE_WALLOPS, 'w'));
ModeManager::AddUserMode(new UserMode(UMODE_NOCTCP, 'C'));
ModeManager::AddUserMode(new UserMode(UMODE_DEAF, 'D'));
ModeManager::AddUserMode(new UserMode(UMODE_SOFTCALLERID, 'G'));
ModeManager::AddUserMode(new UserMode(UMODE_NETADMIN, 'N'));
@@ -622,6 +623,7 @@ class ProtoPlexus : public Module
/* Add channel modes */
ModeManager::AddChannelMode(new ChannelMode(CMODE_BANDWIDTH, 'B'));
ModeManager::AddChannelMode(new ChannelMode(CMODE_NOCTCP, 'C'));
ModeManager::AddChannelMode(new ChannelMode(CMODE_REGMODERATED, 'M'));
ModeManager::AddChannelMode(new ChannelMode(CMODE_NONOTICE, 'N'));
ModeManager::AddChannelMode(new ChannelModeOper('O'));