mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 12:31:54 +00:00
P_SpawnMapThing: Ignore MTF_ flags if MT_NIGHTSBUMPER
(cherry picked from commit d85f108997bfeca3e0b1731c1aad70617456400b)
This commit is contained in:
parent
619c218702
commit
b1993b87a9
1 changed files with 8 additions and 0 deletions
|
|
@ -9381,6 +9381,14 @@ ML_NOCLIMB : Direction not controllable
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ignore MTF_ flags and return early
|
||||||
|
if (i == MT_NIGHTSBUMPER)
|
||||||
|
{
|
||||||
|
mobj->angle = FixedAngle(mthing->angle*FRACUNIT);
|
||||||
|
mthing->mobj = mobj;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
mobj->angle = FixedAngle(mthing->angle*FRACUNIT);
|
mobj->angle = FixedAngle(mthing->angle*FRACUNIT);
|
||||||
|
|
||||||
if ((mthing->options & MTF_AMBUSH)
|
if ((mthing->options & MTF_AMBUSH)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue