From 4f9718e8a891d30d847e078766e359a0c699a113 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 17 Oct 2022 23:19:57 +0200 Subject: [PATCH] - added velocity checks when attempting to dive or surface. This could misbehave at low velocities that could be misinterpreted as a boundary crossing due to the missing check for the movement direction. --- source/games/duke/src/actors_d.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/games/duke/src/actors_d.cpp b/source/games/duke/src/actors_d.cpp index 06673d83e..99f57879e 100644 --- a/source/games/duke/src/actors_d.cpp +++ b/source/games/duke/src/actors_d.cpp @@ -1936,10 +1936,10 @@ void movetransports_d(void) { warpspriteto = 0; - if (ll && sectlotag == 2 && act2->spr.pos.Z < (sectp->ceilingz + ll)) + if (ll && sectlotag == 2 && act2->spr.pos.Z < (sectp->ceilingz + ll) && act2->vel.Z < 0) warpspriteto = 1; - if (ll && sectlotag == 1 && act2->spr.pos.Z > (sectp->floorz - ll)) + if (ll && sectlotag == 1 && act2->spr.pos.Z > (sectp->floorz - ll) && act2->vel.Z > 0) warpspriteto = 1; if (sectlotag == 0 && (onfloorz || abs(act2->spr.pos.Z - act->spr.pos.Z) < 16))