diff options
author | QAston <none@none> | 2009-07-07 16:40:44 +0200 |
---|---|---|
committer | QAston <none@none> | 2009-07-07 16:40:44 +0200 |
commit | 6e3b4b5a4f059796f8c5e5cf796a94f15a237047 (patch) | |
tree | 4ea7e90b057ccdd91f58224b61ddbedfdfa43654 /src | |
parent | a3f00be577f33e41d70ce0c9b0e9e0951d5dc082 (diff) |
*Do not apply fear diminishings for creatures.
*Remove obsolete code for blood fury - by maxdestroyer.
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/Spell.cpp | 2 | ||||
-rw-r--r-- | src/game/SpellMgr.cpp | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/src/game/Spell.cpp b/src/game/Spell.cpp index a0cd094a27b..c8b6bf6d167 100644 --- a/src/game/Spell.cpp +++ b/src/game/Spell.cpp @@ -2831,8 +2831,6 @@ void Spell::cast(bool skipCheck) { if (m_spellInfo->Mechanic == MECHANIC_BANDAGE) // Bandages m_preCastSpell = 11196; // Recently Bandaged - else if(m_spellInfo->SpellIconID == 1662 && m_spellInfo->AttributesEx & 0x20) - m_preCastSpell = 23230; // Blood Fury - Healing Reduction break; } case SPELLFAMILY_DRUID: diff --git a/src/game/SpellMgr.cpp b/src/game/SpellMgr.cpp index df583d098fc..a6c09aec70a 100644 --- a/src/game/SpellMgr.cpp +++ b/src/game/SpellMgr.cpp @@ -2773,9 +2773,9 @@ DiminishingReturnsType GetDiminishingReturnsGroupType(DiminishingGroup group) case DIMINISHING_CONTROL_STUN: case DIMINISHING_TRIGGER_STUN: case DIMINISHING_CHEAPSHOT_POUNCE: - case DIMINISHING_FEAR_BLIND: case DIMINISHING_CYCLONE: return DRTYPE_ALL; + case DIMINISHING_FEAR_BLIND: case DIMINISHING_CONTROL_ROOT: case DIMINISHING_TRIGGER_ROOT: case DIMINISHING_CHARM: |