From 8545e26adf18a58ffd7e0799971a339a92c679ea Mon Sep 17 00:00:00 2001 From: toaster Date: Fri, 18 Nov 2022 12:50:24 +0000 Subject: [PATCH] Tryx, tryy for P_GetThingStepUp in increment_move instead of destination x, y --- src/p_map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_map.c b/src/p_map.c index d112577b7..d8cc4adf1 100644 --- a/src/p_map.c +++ b/src/p_map.c @@ -2441,7 +2441,7 @@ increment_move if (!(thing->flags & MF_NOCLIP)) { //All things are affected by their scale. - fixed_t maxstep = P_GetThingStepUp(thing, x, y); + fixed_t maxstep = P_GetThingStepUp(thing, tryx, tryy); if (tmceilingz - tmfloorz < thing->height) {