Merge branch 'fix-perpetual-damage-floor-respawn' into 'master'

Reset TERRAIN when respawning

See merge request KartKrew/Kart!1068
This commit is contained in:
Gunla 2023-03-23 01:00:49 +00:00
commit 6f6df2cfe2

View file

@ -4032,6 +4032,7 @@ static void P_PlayerMobjThinker(mobj_t *mobj)
P_CheckPosition(mobj, mobj->x, mobj->y, NULL);
mobj->floorz = tm.floorz;
mobj->ceilingz = tm.ceilingz;
mobj->terrain = NULL;
goto animonly;
}