diff options
author | QAston <none@none> | 2010-01-25 12:40:03 +0100 |
---|---|---|
committer | QAston <none@none> | 2010-01-25 12:40:03 +0100 |
commit | 3f6999f7442ca1ccf4388b14b71c92898f2e8a17 (patch) | |
tree | 2a1dab392045d4489025e483d784400d0b140759 /src/game/Spell.h | |
parent | 83c2b6a4d0e15999aa8bd6acbe36786a3d1b782b (diff) |
*Some cleanup in SharedDefines
*Implement spell target modes 96-103, 91, 92
--HG--
branch : trunk
Diffstat (limited to 'src/game/Spell.h')
-rw-r--r-- | src/game/Spell.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/game/Spell.h b/src/game/Spell.h index cff9375a502..004011f985e 100644 --- a/src/game/Spell.h +++ b/src/game/Spell.h @@ -33,10 +33,10 @@ class Aura; enum SpellCastTargetFlags { TARGET_FLAG_SELF = 0x00000000, - TARGET_FLAG_UNUSED1 = 0x00000001, // not used in any spells as of 3.0.3 (can be set dynamically) + TARGET_FLAG_UNUSED1 = 0x00000001, // not used in any spells as of 3.2.2a (can be set dynamically) TARGET_FLAG_UNIT = 0x00000002, // pguid - TARGET_FLAG_UNUSED2 = 0x00000004, // not used in any spells as of 3.0.3 (can be set dynamically) - TARGET_FLAG_UNUSED3 = 0x00000008, // not used in any spells as of 3.0.3 (can be set dynamically) + TARGET_FLAG_UNUSED2 = 0x00000004, // not used in any spells as of 3.2.2a (can be set dynamically) + TARGET_FLAG_UNUSED3 = 0x00000008, // not used in any spells as of 3.2.2a (can be set dynamically) TARGET_FLAG_ITEM = 0x00000010, // pguid TARGET_FLAG_SOURCE_LOCATION = 0x00000020, // 3 float TARGET_FLAG_DEST_LOCATION = 0x00000040, // 3 float @@ -49,7 +49,7 @@ enum SpellCastTargetFlags TARGET_FLAG_STRING = 0x00002000, // string, 0 spells TARGET_FLAG_UNK1 = 0x00004000, // 199 spells, opening object/lock TARGET_FLAG_CORPSE = 0x00008000, // pguid, resurrection spells - TARGET_FLAG_UNK2 = 0x00010000, // pguid, not used in any spells as of 3.0.3 (can be set dynamically) + TARGET_FLAG_UNK2 = 0x00010000, // pguid, not used in any spells as of 3.2.2a (can be set dynamically) TARGET_FLAG_GLYPH = 0x00020000 // used in glyph spells }; |