aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorQAston <qaston@gmail.com>2012-02-22 10:21:02 +0100
committerQAston <qaston@gmail.com>2012-02-22 10:21:02 +0100
commit2a1ffc1cd98a5990268cb2134470cc3e7216a15e (patch)
treec4f59d0dbd748d07914574604b7cafa8ca3f26ce /src
parent1e246cb66c922a96b7519f91a6439e388709738b (diff)
Core/Spells: Fix a typo in f09b5a6bea89da1b73a0beb05b977feba3285562 - call right function for target dest case.
Closes #5357
Diffstat (limited to 'src')
-rwxr-xr-xsrc/server/game/Spells/Spell.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Spells/Spell.cpp b/src/server/game/Spells/Spell.cpp
index b2c6222e6bf..d1f2981f09c 100755
--- a/src/server/game/Spells/Spell.cpp
+++ b/src/server/game/Spells/Spell.cpp
@@ -837,7 +837,7 @@ void Spell::SelectEffectImplicitTargets(SpellEffIndex effIndex, SpellImplicitTar
SelectImplicitCasterDestTargets(effIndex, targetType);
break;
case TARGET_REFERENCE_TYPE_TARGET:
- SelectImplicitCasterDestTargets(effIndex, targetType);
+ SelectImplicitTargetDestTargets(effIndex, targetType);
break;
case TARGET_REFERENCE_TYPE_DEST:
SelectImplicitDestDestTargets(effIndex, targetType);