diff options
| author | Shauren <shauren.trinity@gmail.com> | 2025-01-30 18:27:38 +0100 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2025-01-30 18:27:38 +0100 |
| commit | ace6342aea9e8e3f69af88ca3963fc961ba56f1b (patch) | |
| tree | b8f7395f5580cabc4a1b661135f88145457107ac /src/server/scripts/Spells | |
| parent | 304a25a91d3e9cdad1cc4682cfe540d51c43a15d (diff) | |
Core/Spells: Refactor SpellHistory ModifyCoooldowns and ResetCooldowns callbacks to use CooldownEntry argument instead of internal iterator
Diffstat (limited to 'src/server/scripts/Spells')
| -rw-r--r-- | src/server/scripts/Spells/spell_dh.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/scripts/Spells/spell_dh.cpp b/src/server/scripts/Spells/spell_dh.cpp index 986d75fd313..eb91f1d1a46 100644 --- a/src/server/scripts/Spells/spell_dh.cpp +++ b/src/server/scripts/Spells/spell_dh.cpp @@ -391,9 +391,9 @@ class spell_dh_chaotic_transformation : public SpellScript void HandleCooldown() const { - GetCaster()->GetSpellHistory()->ResetCooldowns([](SpellHistory::CooldownStorageType::iterator itr) + GetCaster()->GetSpellHistory()->ResetCooldowns([](SpellHistory::CooldownEntry const& cooldown) { - uint32 category = sSpellMgr->AssertSpellInfo(itr->first, DIFFICULTY_NONE)->CategoryId; + uint32 category = sSpellMgr->AssertSpellInfo(cooldown.SpellId, DIFFICULTY_NONE)->CategoryId; return category == SPELL_CATEGORY_DH_EYE_BEAM || category == SPELL_CATEGORY_DH_BLADE_DANCE; }, true); } |
