Merge pull request #15727 from ShinDarth/duel-cd

Core/SpellHistory: Improved Cooldown Duel Reset
(cherry picked from commit 981e764004)

Conflicts:
	src/server/game/Spells/SpellHistory.cpp
This commit is contained in:
MitchesD
2015-10-18 15:55:39 +02:00
committed by Carbenium
parent 63f253e95c
commit 42cf4e7713

View File

@@ -912,6 +912,10 @@ void SpellHistory::RestoreCooldownStateAfterDuel()
{
Clock::time_point now = Clock::now();
uint32 cooldownDuration = c.second.CooldownEnd > now ? std::chrono::duration_cast<std::chrono::milliseconds>(c.second.CooldownEnd - now).count() : 0;
if (cooldownDuration == 0)
continue;
spellCooldown.SpellCooldowns.emplace_back(c.first, cooldownDuration);
}