fix(Core/Instances): Fixed displaying warning about entering instance in progress. (#8171)
This commit is contained in:
parent
6c953e9333
commit
ca47fc96f2
1 changed files with 1 additions and 1 deletions
|
|
@ -2935,7 +2935,7 @@ bool InstanceMap::AddPlayerToMap(Player* player)
|
|||
if (!group || !group->isLFGGroup() || !group->IsLfgRandomInstance())
|
||||
player->AddInstanceEnterTime(GetInstanceId(), time(nullptr));
|
||||
|
||||
if (playerBind->perm && !mapSave->CanReset() && group && !group->isLFGGroup() && !group->IsLfgRandomInstance())
|
||||
if (!playerBind->perm && !mapSave->CanReset() && group && !group->isLFGGroup() && !group->IsLfgRandomInstance())
|
||||
{
|
||||
WorldPacket data(SMSG_INSTANCE_LOCK_WARNING_QUERY, 9);
|
||||
data << uint32(60000);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue