diff --git a/src/strategy/raids/ulduar/RaidUlduarBossHelper.cpp b/src/strategy/raids/ulduar/RaidUlduarBossHelper.cpp index 2f7411d9..2b41fc38 100644 --- a/src/strategy/raids/ulduar/RaidUlduarBossHelper.cpp +++ b/src/strategy/raids/ulduar/RaidUlduarBossHelper.cpp @@ -205,5 +205,9 @@ void RazorscaleBossHelper::AssignRolesBasedOnHealth() bot->Yell(text, LANG_UNIVERSAL); - _lastRoleSwapTime = std::time(nullptr); + ObjectGuid botGuid = bot->GetGUID(); + if (!botGuid) + return; + + _lastRoleSwapTime[botGuid] = std::time(nullptr); }