From 1b095443148041c1549122d8b0821c0974b317ad Mon Sep 17 00:00:00 2001 From: Scott_NZ Date: Thu, 6 Dec 2012 03:24:24 +1300 Subject: [PATCH] Default to allies for neutral in ra, gdi in cnc --- OpenRA.Editor/LegacyMapImporter.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/OpenRA.Editor/LegacyMapImporter.cs b/OpenRA.Editor/LegacyMapImporter.cs index 34f56f9c47..9715841561 100644 --- a/OpenRA.Editor/LegacyMapImporter.cs +++ b/OpenRA.Editor/LegacyMapImporter.cs @@ -1,4 +1,4 @@ -#region Copyright & License Information +#region Copyright & License Information /* * Copyright 2007-2011 The OpenRA Developers (see AUTHORS) * This file is part of OpenRA, which is free software. It is made @@ -460,11 +460,11 @@ namespace OpenRA.Editor break; case "Neutral": c = "neutral"; - race = "allies"; + race = isRA ? "allies" : "gdi"; break; default: c = "neutral"; - race = "allies"; + race = isRA ? "allies" : "gdi"; break; }