[9402] Add enum SpellEffectIndex to use with explicit effect index checks

Signed-off-by: NoFantasy <nofantasy@nf.no>
This commit is contained in:
NoFantasy 2010-02-17 16:51:57 +01:00
parent 54559b5c03
commit 5c05280c44
2 changed files with 8 additions and 1 deletions

View file

@ -382,4 +382,11 @@ enum SummonPropFlags
SUMMON_PROP_FLAG_UNK14 = 0x2000, // 2 spells in 3.0.3, escort? SUMMON_PROP_FLAG_UNK14 = 0x2000, // 2 spells in 3.0.3, escort?
}; };
enum SpellEffectIndex
{
EFFECT_INDEX_0 = 0,
EFFECT_INDEX_1 = 1,
EFFECT_INDEX_2 = 2
};
#endif #endif

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 "9401" #define REVISION_NR "9402"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__