aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Spells/SpellDefines.h
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2024-06-25 00:21:27 +0200
committerShauren <shauren.trinity@gmail.com>2024-06-25 00:21:27 +0200
commita885a1fc3c6b894f546b7aee70b5a67932a94486 (patch)
tree98cb6a6d2cbf5e0bd60afce2595f07ed3e7fb23c /src/server/game/Spells/SpellDefines.h
parent0b8eed2d547acc0ba115198cb306c4f9127af807 (diff)
Core/Spells: Implemented new trigger flag to cause spells to be instant without also causing other behavior of TRIGGERED_CAST_DIRECTLY (skipping SMSG_SPELL_START, skipping starting GCD)
Diffstat (limited to 'src/server/game/Spells/SpellDefines.h')
-rw-r--r--src/server/game/Spells/SpellDefines.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Spells/SpellDefines.h b/src/server/game/Spells/SpellDefines.h
index 5c8176cee06..9fd45a0b200 100644
--- a/src/server/game/Spells/SpellDefines.h
+++ b/src/server/game/Spells/SpellDefines.h
@@ -252,7 +252,7 @@ enum TriggerCastFlags : uint32
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
- // reuse = 0x00000040,
+ 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_SET_FACING = 0x00000200, //!< Will not adjust facing to target (if any)