[7930] Added diminishing for spell 1499 and ranks.

Signed-off-by: ApoC <apoc@nymfe.net>
This commit is contained in:
Lightguard 2009-05-31 22:16:22 +02:00 committed by ApoC
parent fb45529eff
commit bc953feb31
2 changed files with 8 additions and 1 deletions

View file

@ -2719,6 +2719,13 @@ DiminishingGroup GetDiminishingReturnsGroupForSpell(SpellEntry const* spellproto
return DIMINISHING_BLIND_CYCLONE; return DIMINISHING_BLIND_CYCLONE;
break; break;
} }
case SPELLFAMILY_HUNTER:
{
// Freezing trap
if (spellproto->SpellFamilyFlags & UI64LIT(0x00000000008))
return DIMINISHING_FREEZE;
break;
}
case SPELLFAMILY_WARLOCK: case SPELLFAMILY_WARLOCK:
{ {
// Fear // Fear

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "7929" #define REVISION_NR "7930"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__