Don't draw 1 tic of indicators on dying players

This commit is contained in:
AJ Martinez 2023-11-15 23:55:45 -07:00
parent 9ed05b5c21
commit d08170ecea

View file

@ -4098,6 +4098,7 @@ void K_InitStumbleIndicator(player_t *player)
P_SetTarget(&player->stumbleIndicator, new);
P_SetTarget(&new->target, player->mo);
new->renderflags |= RF_DONTDRAW;
}
void K_InitWavedashIndicator(player_t *player)
@ -4123,6 +4124,7 @@ void K_InitWavedashIndicator(player_t *player)
P_SetTarget(&player->wavedashIndicator, new);
P_SetTarget(&new->target, player->mo);
new->renderflags |= RF_DONTDRAW;
}
void K_InitTrickIndicator(player_t *player)