mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-26 20:11:47 +00:00
Disable bumper score icon in NiGHTS to match enemies.
This commit is contained in:
parent
5260d3f4e1
commit
6203a867f6
1 changed files with 2 additions and 2 deletions
|
|
@ -391,8 +391,8 @@ springstate:
|
|||
P_SetMobjState(spring, spring->info->raisestate);
|
||||
if (object->player && spring->reactiontime && !(spring->info->flags & MF_ENEMY))
|
||||
{
|
||||
mobj_t *scoremobj = P_SpawnMobj(spring->x, spring->y, spring->z + (spring->height/2), MT_SCORE);
|
||||
P_SetMobjState(scoremobj, mobjinfo[MT_SCORE].spawnstate+11);
|
||||
if (object->player->powers[pw_carry] != CR_NIGHTSMODE) // don't make graphic in NiGHTS
|
||||
P_SetMobjState(P_SpawnMobj(spring->x, spring->y, spring->z + (spring->height/2), MT_SCORE), mobjinfo[MT_SCORE].spawnstate+11);
|
||||
P_AddPlayerScore(object->player, 10);
|
||||
spring->reactiontime--;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue