mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Make Battle arrows consistent w/ the flashing item change earlier
Should make Hyudoro even more amazing in Battle, since you can tell which held items are off-limits~
This commit is contained in:
parent
dc76eeed31
commit
be6d4342b9
1 changed files with 9 additions and 1 deletions
|
|
@ -7022,6 +7022,14 @@ void P_MobjThinker(mobj_t *mobj)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (mobj->target->player->kartstuff[k_itemheld])
|
||||||
|
{
|
||||||
|
if (leveltime & 1)
|
||||||
|
mobj->tracer->flags2 &= ~MF2_DONTDRAW;
|
||||||
|
else
|
||||||
|
mobj->tracer->flags2 |= MF2_DONTDRAW;
|
||||||
|
}
|
||||||
|
else
|
||||||
mobj->tracer->flags2 &= ~MF2_DONTDRAW;
|
mobj->tracer->flags2 &= ~MF2_DONTDRAW;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue