Core/LFG: Remove dungeon cooldown when completing random dungeons

(cherry picked from commit 24fbbee4b9)
This commit is contained in:
jackpoz
2019-05-01 18:37:39 +02:00
committed by Shauren
parent c22431936e
commit 97be87b7d5

View File

@@ -1451,12 +1451,20 @@ void LFGMgr::FinishDungeon(ObjectGuid gguid, const uint32 dungeonId, Map const*
}
Player* player = ObjectAccessor::FindPlayer(guid);
if (!player || player->FindMap() != currMap)
if (!player)
{
TC_LOG_DEBUG("lfg.dungeon.finish", "Group: %s, Player: %s not found in world", gguid.ToString().c_str(), guid.ToString().c_str());
continue;
}
if (player->FindMap() != currMap)
{
TC_LOG_DEBUG("lfg.dungeon.finish", "Group: %s, Player: %s is in a different map", gguid.ToString().c_str(), guid.ToString().c_str());
continue;
}
player->RemoveAurasDueToSpell(LFG_SPELL_DUNGEON_COOLDOWN);
LFGDungeonData const* dungeonDone = GetLFGDungeon(dungeonId);
uint32 mapId = dungeonDone ? uint32(dungeonDone->map) : 0;