From 7cbf45d76d44f3f2cc4274897d2d8c5550bbd6a9 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 12 Aug 2017 12:35:01 +0200 Subject: [PATCH] - let PlayerPawn.ForwardThrust use its angle parameter. --- wadsrc/static/zscript/shared/player.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wadsrc/static/zscript/shared/player.txt b/wadsrc/static/zscript/shared/player.txt index 98b504985..8b8710416 100644 --- a/wadsrc/static/zscript/shared/player.txt +++ b/wadsrc/static/zscript/shared/player.txt @@ -753,7 +753,7 @@ class PlayerPawn : Actor native Vel.Z -= zpush; move *= cos(Pitch); } - Thrust(move); + Thrust(move, angle); } //----------------------------------------------------------------------------