From 85b6c1944232bb9caa562647336f4b8ef828cd17 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 6 Aug 2023 10:27:41 +0200 Subject: [PATCH] - RR: fix movement direction of bowling ball. --- .../static/zscript/games/duke/actors/redneckcstuff/bowling.zs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wadsrc/static/zscript/games/duke/actors/redneckcstuff/bowling.zs b/wadsrc/static/zscript/games/duke/actors/redneckcstuff/bowling.zs index 5d454ad92..a03e39412 100644 --- a/wadsrc/static/zscript/games/duke/actors/redneckcstuff/bowling.zs +++ b/wadsrc/static/zscript/games/duke/actors/redneckcstuff/bowling.zs @@ -238,7 +238,7 @@ class RedneckBowlingBall : RedneckBowlingPin if (j) { j.vel.X = 250 / 16.; - j.angle = self.angle; + j.angle = sang; j.pos.Z -= 15; } return true;