From 283f8d208a1f1b651a5dbde271483657fb52e711 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Tue, 11 Oct 2022 16:40:33 +1100 Subject: [PATCH] - SW: Pitch-adjusted velocity for `InitLaser()`. --- source/games/sw/src/weapon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/games/sw/src/weapon.cpp b/source/games/sw/src/weapon.cpp index fb4dd2e1f..2195ef3de 100644 --- a/source/games/sw/src/weapon.cpp +++ b/source/games/sw/src/weapon.cpp @@ -13392,7 +13392,7 @@ int InitLaser(PLAYER* pp) actorNew->clipdist = 4; // the slower the missile travels the less of a zvel it needs - actorNew->vel.Z = pp->horizon.horiz.Tan() * 16.; + setFreeAimVelocity(actorNew->vel.X, actorNew->vel.Z, pp->horizon.horiz, 16.); actorNew->user.WeaponNum = actor->user.WeaponNum; actorNew->user.Radius = 200;