From 3174e0cc3d8af6edd576ca9dc018d341933c0f54 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 e235cb9a4..677954b43 100644 --- a/src/p_map.c +++ b/src/p_map.c @@ -2618,7 +2618,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) {