fix(Core): fix chests not despawning when opened in group (#5371)

This commit is contained in:
Axel Cocat
2021-04-20 22:51:55 +02:00
committed by GitHub
parent a278fd7340
commit cd6ee1c644
3 changed files with 12 additions and 0 deletions

View File

@@ -1494,6 +1494,15 @@ void Group::CountTheRoll(Rolls::iterator rollI, Map* allowedMap)
item->is_blocked = false;
}
{
Loot* loot = roll->getLoot();
if (loot->isLooted() && loot->sourceGameObject != nullptr && loot->sourceGameObject->GetGOInfo()->type == GAMEOBJECT_TYPE_CHEST)
{
// Deactivate chest if the last item was rolled in group
loot->sourceGameObject->SetLootState(GO_JUST_DEACTIVATED);
}
}
RollId.erase(rollI);
delete roll;
}