- QUOTE_DEAD may never repeat.

This gets spammed hard enough to get past the timer filter.
This commit is contained in:
Christoph Oelckers 2020-07-31 21:14:43 +02:00
parent 2f94ae8160
commit 6d24a20f5c

View file

@ -147,7 +147,7 @@ void FTA(int q, struct player_struct* p)
if (hud_messages == 0 || q < 0 || !(p->gm & MODE_GAME))
return;
if (p->ftq != q || totalclock - p->ftt > TICRATE)
if (p->ftq != q || (totalclock - p->ftt > TICRATE && q != QUOTE_DEAD))
{
p->ftq = q;
p->ftt = totalclock;