aboutsummaryrefslogtreecommitdiff
path: root/src/game/Player.cpp
diff options
context:
space:
mode:
authorTrazom62 <none@none>2010-04-22 21:28:04 +0200
committerTrazom62 <none@none>2010-04-22 21:28:04 +0200
commitb142ae155e88677a82669df383f3d54e651b1898 (patch)
treebe3a0d18756af07a6cf633834a9c311c072f6ed7 /src/game/Player.cpp
parent7eac04b5ad290851bbfeecbfee34310348c8c181 (diff)
Fixes GCD when 1 sec or shorter.
Support aura reducing GCD (SPELLMOD_GLOBAL_COOLDOWN) (e.g. Backdraft, Unholy presence). Fixes issue #1666. Fixes issue #1616. --HG-- branch : trunk
Diffstat (limited to 'src/game/Player.cpp')
-rw-r--r--src/game/Player.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/game/Player.cpp b/src/game/Player.cpp
index c25810a95c7..16cc48c44f4 100644
--- a/src/game/Player.cpp
+++ b/src/game/Player.cpp
@@ -22124,19 +22124,21 @@ void Player::UpdateCharmedAI()
}
}
-void Player::AddGlobalCooldown(SpellEntry const *spellInfo, Spell const *spell)
+void Player::AddGlobalCooldown(SpellEntry const *spellInfo, Spell *spell)
{
if (!spellInfo || !spellInfo->StartRecoveryTime)
return;
- uint32 cdTime = spellInfo->StartRecoveryTime;
+ float cdTime = float(spellInfo->StartRecoveryTime);
if (!(spellInfo->Attributes & (SPELL_ATTR_UNK4|SPELL_ATTR_PASSIVE)))
cdTime *= GetFloatValue(UNIT_MOD_CAST_SPEED);
else if (IsRangedWeaponSpell(spellInfo) && !spell->IsAutoRepeat())
cdTime *= m_modAttackSpeedPct[RANGED_ATTACK];
- m_globalCooldowns[spellInfo->StartRecoveryCategory] = ((cdTime < 1000 || cdTime > 2000) ? 1000 : cdTime);
+ ApplySpellMod(spellInfo->Id, SPELLMOD_GLOBAL_COOLDOWN, cdTime, spell);
+ if (cdTime > 0)
+ m_globalCooldowns[spellInfo->StartRecoveryCategory] = uint32(cdTime);
}
bool Player::HasGlobalCooldown(SpellEntry const *spellInfo) const