From ab4a9388ce165ee53cc8cb685489361618a0568c Mon Sep 17 00:00:00 2001 From: Oliver Brakmann Date: Wed, 9 Jul 2014 11:47:33 +0200 Subject: [PATCH] Change defaults for the production palette's ready sign Default is now to blink alternating between white and gold. --- OpenRA.Mods.RA/Widgets/BuildPaletteWidget.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenRA.Mods.RA/Widgets/BuildPaletteWidget.cs b/OpenRA.Mods.RA/Widgets/BuildPaletteWidget.cs index 34ed6b2cd5..91477c8d3c 100644 --- a/OpenRA.Mods.RA/Widgets/BuildPaletteWidget.cs +++ b/OpenRA.Mods.RA/Widgets/BuildPaletteWidget.cs @@ -25,8 +25,8 @@ namespace OpenRA.Mods.RA.Widgets class BuildPaletteWidget : Widget { public enum ReadyTextStyleOptions { Solid, AlternatingColor, Blinking } - public readonly ReadyTextStyleOptions ReadyTextStyle = ReadyTextStyleOptions.Blinking; - public readonly Color ReadyTextAltColor = Color.LimeGreen; + public readonly ReadyTextStyleOptions ReadyTextStyle = ReadyTextStyleOptions.AlternatingColor; + public readonly Color ReadyTextAltColor = Color.Gold; public int Columns = 3; public int Rows = 5;