From ea7f86ae6499914755b188554ae2fd076b8a5526 Mon Sep 17 00:00:00 2001 From: UltraNix <80540499+UltraNix@users.noreply.github.com> Date: Wed, 14 Sep 2022 03:51:40 +0200 Subject: [PATCH] fix(Core/Spells): Fixed ground destination of Blink. (#13009) Fixes #11721 --- src/server/game/Spells/Spell.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/game/Spells/Spell.cpp b/src/server/game/Spells/Spell.cpp index 145955832..585bd4f62 100644 --- a/src/server/game/Spells/Spell.cpp +++ b/src/server/game/Spells/Spell.cpp @@ -1592,7 +1592,7 @@ void Spell::SelectImplicitCasterDestTargets(SpellEffIndex effIndex, SpellImplici } //} - lastpos.Relocate(destx, desty, destz + 0.5f, pos.GetOrientation()); + lastpos.Relocate(destx, desty, destz, pos.GetOrientation()); dest = SpellDestination(lastpos); } else