diff options
author | Traesh <Traesh@users.noreply.github.com> | 2021-08-15 11:09:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-15 11:09:46 +0200 |
commit | fb6761c273d518eae6bab72fc9c2a2b6f93eec83 (patch) | |
tree | c2dc8907691bf0da898a62448058df38892d9333 /src/server/game/Spells/SpellScript.cpp | |
parent | 4725941567f9dae583fc27b52b51a23aa84cd098 (diff) |
Core/Spells Implement targets 133, 134, 135 : TARGET_UNIT_LINE_CASTER_TO_DEST_*** (#26786)
Diffstat (limited to 'src/server/game/Spells/SpellScript.cpp')
-rw-r--r-- | src/server/game/Spells/SpellScript.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/server/game/Spells/SpellScript.cpp b/src/server/game/Spells/SpellScript.cpp index 29d559cf0be..7213776011f 100644 --- a/src/server/game/Spells/SpellScript.cpp +++ b/src/server/game/Spells/SpellScript.cpp @@ -286,6 +286,7 @@ bool SpellScript::TargetHook::CheckEffect(SpellInfo const* spellEntry, uint8 eff return true; case TARGET_SELECT_CATEGORY_CONE: // AREA case TARGET_SELECT_CATEGORY_AREA: // AREA + case TARGET_SELECT_CATEGORY_LINE: // AREA return area; case TARGET_SELECT_CATEGORY_DEFAULT: switch (targetInfo.GetObjectType()) |