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

(cherry picked from commit a46c835ed1b498d4670c149a9f3ca31ea44eb35f)
This commit is contained in:
jackpoz
2022-02-05 22:59:46 +01:00
committed by Shauren
parent 97a5c29e8a
commit 0441f3ea5e
+2 -2
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;
}