From fafdb257b89e9a521a71931a161dabff1198aaac Mon Sep 17 00:00:00 2001 From: Sally Cochenour Date: Thu, 2 Apr 2020 15:15:34 -0400 Subject: [PATCH] Actually, this should be left alone too --- src/p_mobj.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/p_mobj.c b/src/p_mobj.c index 6699d898c..59816430c 100644 --- a/src/p_mobj.c +++ b/src/p_mobj.c @@ -12638,8 +12638,8 @@ ML_NOCLIMB : Direction not controllable // Set the radius, mobj z, and mthing z to match what the parameters want if (line != -1) { - fixed_t lineradius = FixedMul(sides[lines[line].sidenum[0]].textureoffset, mapobjectscale); - fixed_t linez = sides[lines[line].sidenum[0]].rowoffset; // mapthing z heights aren't affected by mapobjectscale, so I left this alone. + fixed_t lineradius = sides[lines[line].sidenum[0]].textureoffset; + fixed_t linez = sides[lines[line].sidenum[0]].rowoffset; if (lineradius > 0) mobj->radius = lineradius;