mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Do not protect non-IT players in tag gametypes
This commit is contained in:
parent
93ac266be1
commit
f98be013ea
1 changed files with 2 additions and 1 deletions
|
|
@ -12211,7 +12211,8 @@ void P_PlayerThink(player_t *player)
|
|||
}
|
||||
|
||||
// IF PLAYER NOT HERE THEN FLASH END IF
|
||||
if (player->quittime && player->powers[pw_flashing] < flashingtics - 1)
|
||||
if (player->quittime && player->powers[pw_flashing] < flashingtics - 1
|
||||
&& !(G_TagGametype() && !(player->pflags & PF_TAGIT)) && !player->gotflag)
|
||||
player->powers[pw_flashing] = flashingtics - 1;
|
||||
|
||||
// Counters, time dependent power ups.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue