From c7c59d33ffe2abf5364575a427db92e800c76398 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 31 Jul 2020 21:16:07 +0200 Subject: [PATCH] - always set the spam timer when a quote is supposed to be printed, even if it gets rejected. --- source/games/duke/src/game_misc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/games/duke/src/game_misc.cpp b/source/games/duke/src/game_misc.cpp index 8b3b96725..74ccfc125 100644 --- a/source/games/duke/src/game_misc.cpp +++ b/source/games/duke/src/game_misc.cpp @@ -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; } //==========================================================================