mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-28 13:21:10 +00:00
Fix bottom of FOF with a pusher special not accounting for slopes
This commit is contained in:
parent
b949f49c68
commit
9f87841936
1 changed files with 1 additions and 1 deletions
|
@ -7428,7 +7428,7 @@ void T_Pusher(pusher_t *p)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (top < thing->z || referrer->floorheight > (thing->z + (thing->height >> 1)))
|
if (top < thing->z || bottom > (thing->z + (thing->height >> 1)))
|
||||||
continue;
|
continue;
|
||||||
if (thing->z + thing->height > top)
|
if (thing->z + thing->height > top)
|
||||||
touching = true;
|
touching = true;
|
||||||
|
|
Loading…
Reference in a new issue