Merge pull request #15727 from ShinDarth/duel-cd

Core/SpellHistory: Improved Cooldown Duel Reset
This commit is contained in:
MitchesD
2015-10-18 15:55:39 +02:00

View File

@@ -677,6 +677,10 @@ void SpellHistory::RestoreCooldownStateAfterDuel()
{
Clock::time_point now = Clock::now();
uint32 cooldownDuration = itr->second.CooldownEnd > now ? std::chrono::duration_cast<std::chrono::milliseconds>(itr->second.CooldownEnd - now).count() : 0;
if (cooldownDuration == 0)
continue;
cooldowns[itr->first] = cooldownDuration;
}