mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 15:21:48 +00:00
- always set the spam timer when a quote is supposed to be printed, even if it gets rejected.
This commit is contained in:
parent
6d24a20f5c
commit
c7c59d33ff
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,6 @@ void FTA(int q, struct player_struct* p)
|
|||
if (p->ftq != q || (totalclock - p->ftt > TICRATE && q != QUOTE_DEAD))
|
||||
{
|
||||
p->ftq = q;
|
||||
p->ftt = totalclock;
|
||||
auto qu = quoteMgr.GetQuote(q);
|
||||
if (p == &ps[screenpeek] && qu[0] != '\0')
|
||||
{
|
||||
|
@ -166,6 +165,7 @@ void FTA(int q, struct player_struct* p)
|
|||
}
|
||||
}
|
||||
}
|
||||
p->ftt = totalclock;
|
||||
}
|
||||
|
||||
//==========================================================================
|
||||
|
|
Loading…
Reference in a new issue