diff options
author | Shauren <shauren.trinity@gmail.com> | 2024-12-31 20:14:01 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2024-12-31 20:14:01 +0100 |
commit | 151a50d2aa6e10efe7fc14e0bd22aaef9effa859 (patch) | |
tree | ae180c98fe288e81040f2b53c992cc2f1168e15b /src/server/game/Spells/SpellDefines.h | |
parent | d778d5ec7cfa94d6de2500e1fff7ae3bd30be18f (diff) |
Core/Spells: Split TRIGGERED_IGNORE_POWER_AND_REAGENT_COST into separate POWER and REAGENT flags
Diffstat (limited to 'src/server/game/Spells/SpellDefines.h')
-rw-r--r-- | src/server/game/Spells/SpellDefines.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Spells/SpellDefines.h b/src/server/game/Spells/SpellDefines.h index 7e6f7eb6a24..b4a776ba4de 100644 --- a/src/server/game/Spells/SpellDefines.h +++ b/src/server/game/Spells/SpellDefines.h @@ -257,13 +257,13 @@ enum TriggerCastFlags : uint32 TRIGGERED_NONE = 0x00000000, //!< Not triggered TRIGGERED_IGNORE_GCD = 0x00000001, //!< Will ignore GCD TRIGGERED_IGNORE_SPELL_AND_CATEGORY_CD = 0x00000002, //!< Will ignore Spell and Category cooldowns - TRIGGERED_IGNORE_POWER_AND_REAGENT_COST = 0x00000004, //!< Will ignore power and reagent cost + TRIGGERED_IGNORE_POWER_COST = 0x00000004, //!< Will ignore power and reagent cost TRIGGERED_IGNORE_CAST_ITEM = 0x00000008, //!< Will not take away cast item or update related achievement criteria TRIGGERED_IGNORE_AURA_SCALING = 0x00000010, //!< Will ignore aura scaling TRIGGERED_IGNORE_CAST_IN_PROGRESS = 0x00000020, //!< Will not check if a current cast is in progress TRIGGERED_IGNORE_CAST_TIME = 0x00000040, //!< Will always be instantly cast TRIGGERED_CAST_DIRECTLY = 0x00000080, //!< In Spell::prepare, will be cast directly without setting containers for executed spell - // reuse = 0x00000100, + TRIGGERED_IGNORE_REAGENT_COST = 0x00000100, //!< Will ignore reagent cost TRIGGERED_IGNORE_SET_FACING = 0x00000200, //!< Will not adjust facing to target (if any) TRIGGERED_IGNORE_SHAPESHIFT = 0x00000400, //!< Will ignore shapeshift checks // reuse = 0x00000800, |