aboutsummaryrefslogtreecommitdiffstats
path: root/src/configreader.cpp
diff options
context:
space:
mode:
authorGravatar attilamolnar2013-07-15 00:20:28 +0200
committerGravatar attilamolnar2013-07-19 19:40:02 +0200
commit5288eb159451aea53168c1a812a72594801f6421 (patch)
treef8b21dc166a573796c87d67de63e815e3ccb9d66 /src/configreader.cpp
parentMove dynamic_reference and related classes to dynref.h (diff)
downloadinspircd++-5288eb159451aea53168c1a812a72594801f6421.tar.gz
inspircd++-5288eb159451aea53168c1a812a72594801f6421.tar.bz2
inspircd++-5288eb159451aea53168c1a812a72594801f6421.zip
Seperate ModeReference into ChanModeReference and UserModeReference
Diffstat (limited to 'src/configreader.cpp')
-rw-r--r--src/configreader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp
index 5c70a9e83..b8c54bef9 100644
--- a/src/configreader.cpp
+++ b/src/configreader.cpp
@@ -825,7 +825,7 @@ void ConfigReaderThread::Finish()
*/
ServerInstance->XLines->CheckELines();
ServerInstance->XLines->ApplyLines();
- ModeReference ban(NULL, "ban");
+ ChanModeReference ban(NULL, "ban");
static_cast<ListModeBase*>(*ban)->DoRehash();
Config->ApplyDisabledCommands(Config->DisabledCommands);
User* user = ServerInstance->FindNick(TheUserUID);