From 085a8a34cb0b1bd97bba76fff15820fb57aa50e4 Mon Sep 17 00:00:00 2001 From: Attila Molnar Date: Fri, 13 Jun 2014 15:40:03 +0200 Subject: Add CommandParser::GetCommands() and typedef CommandMap and use it instead of directly accessing cmdlist --- src/configreader.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/configreader.cpp') diff --git a/src/configreader.cpp b/src/configreader.cpp index 1ac075557..945600e6c 100644 --- a/src/configreader.cpp +++ b/src/configreader.cpp @@ -69,7 +69,8 @@ bool ServerConfig::ApplyDisabledCommands(const std::string& data) std::string thiscmd; /* Enable everything first */ - for (Commandtable::iterator x = ServerInstance->Parser->cmdlist.begin(); x != ServerInstance->Parser->cmdlist.end(); x++) + const CommandParser::CommandMap& commands = ServerInstance->Parser->GetCommands(); + for (CommandParser::CommandMap::const_iterator x = commands.begin(); x != commands.end(); ++x) x->second->Disable(false); /* Now disable all the ones which the user wants disabled */ -- cgit v1.3.1-10-gc9f91