From eb9054a4d6b386ce8379cca75b50880d3090e279 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Thu, 17 Feb 2011 21:50:16 +1300 Subject: [PATCH] Fix default ColorRamp --- OpenRA.FileFormats/Map/PlayerReference.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.FileFormats/Map/PlayerReference.cs b/OpenRA.FileFormats/Map/PlayerReference.cs index 3878e3679c..0fbff4a5a7 100644 --- a/OpenRA.FileFormats/Map/PlayerReference.cs +++ b/OpenRA.FileFormats/Map/PlayerReference.cs @@ -27,7 +27,7 @@ namespace OpenRA.FileFormats public string Race; public bool LockColor = false; - public ColorRamp ColorRamp = new ColorRamp(75, 255, 180, 25); + public ColorRamp ColorRamp = new ColorRamp(0,0,238,34); public int InitialCash = 0; public string[] Allies = {};