Core/LFG: Restore ".lfg queue" command argument handling

This commit is contained in:
jackpoz
2020-09-11 23:39:11 +02:00
parent 9f0b5526f0
commit a46c835ed1

View File

@@ -137,9 +137,9 @@ public:
return true;
}
static bool HandleLfgQueueInfoCommand(ChatHandler* handler, bool full)
static bool HandleLfgQueueInfoCommand(ChatHandler* handler, Tail full)
{
handler->SendSysMessage(sLFGMgr->DumpQueueInfo(full).c_str(), true);
handler->SendSysMessage(sLFGMgr->DumpQueueInfo(!full.empty()).c_str(), true);
return true;
}