*Correct diminishing returns for charge and linked spell for Stoneform.

--HG--
branch : trunk
This commit is contained in:
QAston
2009-07-19 14:56:18 +02:00
parent 94992adb64
commit b16ffa91b1
3 changed files with 6 additions and 3 deletions

View File

@@ -2913,8 +2913,8 @@ DiminishingGroup GetDiminishingReturnsGroupForSpell(SpellEntry const* spellproto
// Intimidating Shout
else if (spellproto->SpellFamilyFlags[0] & 0x40000)
return DIMINISHING_FEAR_BLIND;
// Charge
else if (spellproto->SpellFamilyFlags[0] & 0x1)
// Charge Stun
else if (spellproto->SpellFamilyFlags[0] & 0x01000000)
return DIMINISHING_NONE;
break;
}