Skip to content

Commit

Permalink
Make game timer only blink on pause
Browse files Browse the repository at this point in the history
  • Loading branch information
PunkPun committed Jul 8, 2022
1 parent 8a98ad5 commit e5f7141
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenRA.Mods.Common/Widgets/Logic/Ingame/GameTimerLogic.cs
Expand Up @@ -44,7 +44,7 @@ public GameTimerLogic(Widget widget, OrderManager orderManager, World world)
{
timer.GetText = () =>
{
if (status == null && shouldShowStatus())
if (status == null && shouldShowStatus() && world.ReplayTimestep == 0)
return statusText();
var timeLimit = tlm?.TimeLimit ?? 0;
Expand Down

0 comments on commit e5f7141

Please sign in to comment.