aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rwxr-xr-xsrc/server/game/Spells/Spell.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Spells/Spell.cpp b/src/server/game/Spells/Spell.cpp
index fe4ca2912b4..0402c9bd8fe 100755
--- a/src/server/game/Spells/Spell.cpp
+++ b/src/server/game/Spells/Spell.cpp
@@ -2114,8 +2114,8 @@ void Spell::SelectEffectTargets(uint32 i, uint32 cur)
case TARGET_DEST_CASTER_FRONT_LEAP:
case TARGET_DEST_CASTER_FRONT: angle = 0.0f; break;
case TARGET_DEST_CASTER_BACK: angle = static_cast<float>(M_PI); break;
- case TARGET_DEST_CASTER_RIGHT: angle = static_cast<float>(M_PI/2); break;
- case TARGET_DEST_CASTER_LEFT: angle = static_cast<float>(-M_PI/2); break;
+ case TARGET_DEST_CASTER_RIGHT: angle = static_cast<float>(-M_PI/2); break;
+ case TARGET_DEST_CASTER_LEFT: angle = static_cast<float>(M_PI/2); break;
default: angle = (float)rand_norm()*static_cast<float>(2*M_PI); break;
}