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:
Nyeriah
2014-08-31 23:43:36 -03:00
parent dd4dbdcd16
commit a151105a69

View File

@@ -245,7 +245,7 @@ public:
return false;
}
if (!groupSource->IsFull())
if (groupSource->IsFull())
{
handler->PSendSysMessage(LANG_GROUP_FULL);
handler->SetSentErrorMessage(true);