- fixed: The countdown for the subtitles display was never counted down so the messages remained forever.

This commit is contained in:
Christoph Oelckers 2019-07-12 20:13:45 +02:00 committed by drfrag
parent 65a054ba88
commit fd3c760244

View file

@ -1254,6 +1254,11 @@ void P_PlayerThink (player_t *player)
I_Error ("No player %td start\n", player - players + 1);
}
if (player->SubtitleCounter > 0)
{
player->SubtitleCounter--;
}
// Bots do not think in freeze mode.
if (level.isFrozen() && player->Bot != nullptr)
{