Merge branch 'fix-crushed-kart' into 'master'

Destroyed Kart: fix crusher animation soft-lock

See merge request KartKrew/Kart!2201
This commit is contained in:
Oni 2024-04-01 00:50:35 +00:00
commit d1910a6574

View file

@ -128,6 +128,13 @@ struct Particle : Mobj
void think()
{
if (!fuse && !momz)
{
// Getting stuck underneath a crusher... force
// a landing so the fuse activates.
on_land();
}
if (state()->num() == S_BRAKEDRIFT)
{
renderflags ^= RF_DONTDRAW;