mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-22 10:52:23 +00:00
Fix CEZ3's first phase being cheated by Fang.
This commit is contained in:
parent
989e089e0a
commit
ea0fe50f5a
1 changed files with 4 additions and 0 deletions
|
@ -4929,6 +4929,7 @@ static void P_Boss4Thinker(mobj_t *mobj)
|
|||
mobj->movecount += mobj->threshold;
|
||||
if (mobj->movecount <= 0)
|
||||
{
|
||||
mobj->flags2 &= ~MF2_INVERTAIMABLE;
|
||||
mobj->movecount = 0;
|
||||
mobj->movedir++; // Initialization complete, next phase!
|
||||
}
|
||||
|
@ -10308,6 +10309,9 @@ mobj_t *P_SpawnMobj(fixed_t x, fixed_t y, fixed_t z, mobjtype_t type)
|
|||
mobj->movefactor = -512*FRACUNIT;
|
||||
mobj->flags2 |= MF2_CLASSICPUSH;
|
||||
break;
|
||||
case MT_EGGMOBILE4:
|
||||
mobj->flags2 |= MF2_INVERTAIMABLE;
|
||||
break;
|
||||
case MT_FLICKY_08:
|
||||
mobj->color = (P_RandomChance(FRACUNIT/2) ? SKINCOLOR_RED : SKINCOLOR_AQUA);
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue