From 53341ee525a9f6a8cfa9c20980d03a08669ac112 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Thu, 10 Nov 2022 08:40:14 +0100 Subject: [PATCH] - Duke: lower conveyor player carry speed. Still no match to the animation, but these games seemingly never cared. --- source/games/duke/src/actors.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/games/duke/src/actors.cpp b/source/games/duke/src/actors.cpp index 645a2114a..c75e84116 100644 --- a/source/games/duke/src/actors.cpp +++ b/source/games/duke/src/actors.cpp @@ -4389,7 +4389,7 @@ void handle_se24(DDukeActor *actor, bool scroll, double mult) { if (abs(ps[p].pos.Z - ps[p].truefz) < gs.playerheight + 9) { - ps[p].fric += vec * (1. / 4.); + ps[p].fric += vec * (1. / 8.); // keeping the original velocity. to match the animation it should be ~1/24. } } }