From cefb1a555117b25e56b9b18ea83c83acecbfbf5d Mon Sep 17 00:00:00 2001 From: terminx Date: Sat, 8 Feb 2020 05:09:15 +0000 Subject: [PATCH] Fix stupid typo that broke conveyor belts git-svn-id: https://svn.eduke32.com/eduke32@8620 1a8010ca-5511-0410-912e-c29ae57300e0 --- source/duke3d/src/game.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/duke3d/src/game.cpp b/source/duke3d/src/game.cpp index bcaee59b5..cecc92071 100644 --- a/source/duke3d/src/game.cpp +++ b/source/duke3d/src/game.cpp @@ -5936,7 +5936,7 @@ MAIN_LOOP_RESTART: input.svel = mulscale9(localInput.fvel, sintable[(q16ang + 2048) & 2047]) + mulscale9(localInput.svel, sintable[(q16ang + 1536) & 2047]); - if (FURY) + if (!FURY) { input.fvel += pPlayer->fric.x; input.svel += pPlayer->fric.y;