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

(cherry picked from commit a46c835ed1)
This commit is contained in:
jackpoz
2020-09-11 23:39:11 +02:00
committed by Shauren
parent 97a5c29e8a
commit 0441f3ea5e

View File

@@ -138,9 +138,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;
}