Core/Dungeon Finder: Restore ".lfg queue debug" logging additional information

Restore ".lfg queue" behavior to print additional debug informations when an additional argument is passed (any character/word will work).
This commit is contained in:
jackpoz
2015-03-29 18:11:26 +02:00
parent c386711972
commit be9294dc09

View File

@@ -118,7 +118,7 @@ public:
static bool HandleLfgQueueInfoCommand(ChatHandler* handler, char const* args)
{
handler->SendSysMessage(sLFGMgr->DumpQueueInfo(atoi(args) != 0).c_str());
handler->SendSysMessage(sLFGMgr->DumpQueueInfo(*args != '\0').c_str());
return true;
}