diff options
author | jackpoz <giacomopoz@gmail.com> | 2020-09-11 23:39:11 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2022-02-05 22:59:46 +0100 |
commit | 0441f3ea5ebf0b9fd31f2e46cf862a74ecd0411a (patch) | |
tree | baff82f8c4a38cdc2309cedbec0bb29699f7544e /src | |
parent | 97a5c29e8a88f5f7e849339e0428ac4cd844e2d7 (diff) |
Core/LFG: Restore ".lfg queue" command argument handling
(cherry picked from commit a46c835ed1b498d4670c149a9f3ca31ea44eb35f)
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/Commands/cs_lfg.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/scripts/Commands/cs_lfg.cpp b/src/server/scripts/Commands/cs_lfg.cpp index f0c6632e19d..8b9a73cc8d6 100644 --- a/src/server/scripts/Commands/cs_lfg.cpp +++ b/src/server/scripts/Commands/cs_lfg.cpp @@ -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; } |