From bc23f582fe69c5a3c9a0c2e08d649d5d6dfdc11d Mon Sep 17 00:00:00 2001
From: James R <justsomejames2@gmail.com>
Date: Tue, 13 Oct 2020 19:11:18 -0700
Subject: [PATCH] Don't need to set this actually

---
 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 e9543e710..2a7b51abd 100644
--- a/src/p_map.c
+++ b/src/p_map.c
@@ -2762,7 +2762,7 @@ boolean P_TryMove(mobj_t *thing, fixed_t x, fixed_t y, boolean allowdropoff)
 
 				if (thingtop == thing->ceilingz && tmceilingz > thingtop && tmceilingz - thingtop <= maxstep)
 				{
-					thing->z = (thing->ceilingz = thingtop = tmceilingz) - thing->height;
+					thing->z = (thing->ceilingz = tmceilingz) - thing->height;
 					thing->ceilingrover = tmceilingrover;
 					thing->eflags |= MFE_JUSTSTEPPEDDOWN;
 				}
-- 
GitLab