Fixes the speed of the blinking READY text (in RA & TD).

This commit is contained in:
Sebastien Kerguen
2014-04-24 17:01:15 +02:00
committed by Matthias Mailänder
parent 082667eeea
commit a7c77d4155
2 changed files with 2 additions and 2 deletions

View File

@@ -306,7 +306,7 @@ namespace OpenRA.Mods.RA.Widgets
return HoldText;
if (item.Done)
return orderManager.LocalFrameNumber / 25 % 2 == 0 ? ReadyText : "";
return orderManager.LocalFrameNumber / 9 % 2 == 0 ? ReadyText : "";
return WidgetUtils.FormatTime(item.RemainingTimeActual);
}