mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-25 03:12:09 +01:00
Scripts/Commands: Fix up logic at group join command, so it doesn't return full group error when it actually isn't full
This commit is contained in:
@@ -245,7 +245,7 @@ public:
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!groupSource->IsFull())
|
||||
if (groupSource->IsFull())
|
||||
{
|
||||
handler->PSendSysMessage(LANG_GROUP_FULL);
|
||||
handler->SetSentErrorMessage(true);
|
||||
|
||||
Reference in New Issue
Block a user