summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-04-21 20:36:15 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-04-21 20:36:15 +0000
commit35a644c0660b9ddb16c86e4d84d0d9809f3c0b31 (patch)
tree8c2a2476822ab8c3bba048aadeca8b3a578986a8 /src
parent6f13968a6fe8ce65ccaa0e4b3ab5dc3ed5f55b84 (diff)
Remove OnRehash of m_chanprotect: bad idea, and it's broken anyway.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9572 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r--src/modules/m_chanprotect.cpp36
1 files changed, 4 insertions, 32 deletions
diff --git a/src/modules/m_chanprotect.cpp b/src/modules/m_chanprotect.cpp
index fdb69d307..6df309cde 100644
--- a/src/modules/m_chanprotect.cpp
+++ b/src/modules/m_chanprotect.cpp
@@ -303,7 +303,7 @@ class ModuleChanProtect : public Module
: Module(Me), FirstInGetsFounder(false), QPrefix(0), APrefix(0), DeprivSelf(false), DeprivOthers(false), booting(true), cp(NULL), cf(NULL)
{
/* Load config stuff */
- OnRehash(NULL,"");
+ LoadSettings();
booting = false;
/* Initialise module variables */
@@ -318,8 +318,8 @@ class ModuleChanProtect : public Module
throw ModuleException("Could not add new modes!");
}
- Implementation eventlist[] = { I_OnUserKick, I_OnUserPart, I_OnRehash, I_OnUserPreJoin, I_OnPostJoin, I_OnAccessCheck };
- ServerInstance->Modules->Attach(eventlist, this, 6);
+ Implementation eventlist[] = { I_OnUserKick, I_OnUserPart, I_OnUserPreJoin, I_OnPostJoin, I_OnAccessCheck };
+ ServerInstance->Modules->Attach(eventlist, this, 5);
}
virtual void OnUserKick(User* source, User* user, Channel* chan, const std::string &reason, bool &silent)
@@ -336,7 +336,7 @@ class ModuleChanProtect : public Module
user->Shrink("cm_protect_"+std::string(channel->name));
}
- virtual void OnRehash(User* user, const std::string &parameter)
+ void LoadSettings()
{
/* Create a configreader class and read our flag,
* in old versions this was heap-allocated and the
@@ -345,9 +345,6 @@ class ModuleChanProtect : public Module
*/
ConfigReader Conf(ServerInstance);
- char old_q = QPrefix;
- char old_a = APrefix;
-
FirstInGetsFounder = Conf.ReadFlag("options", "noservices", 0);
std::string qpre = Conf.ReadValue("options", "qprefix", 0);
@@ -367,31 +364,6 @@ class ModuleChanProtect : public Module
DeprivSelf = Conf.ReadFlag("options","deprotectself",0);
DeprivOthers = Conf.ReadFlag("options","deprotectothers",0);
-
- ServerInstance->Logs->Log("chanprotect", DEBUG, "qprefix is %c and aprefix is %c", QPrefix, APrefix);
-
- /* Did the user change the QA prefixes on the fly?
- * If so, remove all instances of the mode, and reinit
- * the module with prefixes enabled.
- */
- if ((old_q != QPrefix) && (!booting))
- {
- ServerInstance->Modes->DelMode(cf);
- delete cf;
- cf = new ChanFounder(ServerInstance, QPrefix, DeprivSelf, DeprivOthers);
- /* These wont fail, we already owned the mode characters before */
- ServerInstance->Modes->AddMode(cf);
- ServerInstance->SNO->WriteToSnoMask('A', "WARNING: +qa prefixes were enabled or disabled via a REHASH. Clients will probably need to reconnect to pick up this change.");
- }
-
- if ((old_a != APrefix) && (!booting))
- {
- ServerInstance->Modes->DelMode(cp);
- delete cp;
- cp = new ChanProtect(ServerInstance, APrefix, DeprivSelf, DeprivOthers);
- ServerInstance->Modes->AddMode(cp);
- ServerInstance->SNO->WriteToSnoMask('A', "WARNING: +qa prefixes were enabled or disabled via a REHASH. Clients will probably need to reconnect to pick up this change.");
- }
}
virtual int OnUserPreJoin(User *user, Channel *chan, const char *cname, std::string &privs, const std::string &keygiven)