diff --git a/source/games/duke/src/game_misc.cpp b/source/games/duke/src/game_misc.cpp index a8d54b0be..8b3b96725 100644 --- a/source/games/duke/src/game_misc.cpp +++ b/source/games/duke/src/game_misc.cpp @@ -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;