From 77f05a00101cc3a1c2b31b5f79087f4ce0a83515 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Thu, 14 Apr 2016 00:21:38 +0200 Subject: [PATCH] - fixed spawn positions for Korax's missiles. --- src/g_hexen/a_korax.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/g_hexen/a_korax.cpp b/src/g_hexen/a_korax.cpp index 2597fe8cd..7f0d3a43c 100644 --- a/src/g_hexen/a_korax.cpp +++ b/src/g_hexen/a_korax.cpp @@ -484,7 +484,7 @@ AActor *P_SpawnKoraxMissile (const DVector3 &pos, AActor *source, AActor *dest, DAngle an; double dist; - th = Spawn (type, source->PosPlusZ(-source->Floorclip), ALLOW_REPLACE); + th = Spawn (type, pos, ALLOW_REPLACE); th->target = source; // Originator an = th->AngleTo(dest); if (dest->flags & MF_SHADOW)