From a165a801010d433e09a01b148bebe040da25ff75 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sat, 23 Jul 2011 02:43:04 +1200 Subject: [PATCH] Fix imported map spawn ownership --- OpenRA.Editor/LegacyMapImporter.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/OpenRA.Editor/LegacyMapImporter.cs b/OpenRA.Editor/LegacyMapImporter.cs index 036e7852c1..b2f3db5a44 100644 --- a/OpenRA.Editor/LegacyMapImporter.cs +++ b/OpenRA.Editor/LegacyMapImporter.cs @@ -176,6 +176,7 @@ namespace OpenRA.Editor { var a = new ActorReference("mpspawn"); a.Add(new LocationInit(kv.Second)); + a.Add(new OwnerInit("Neutral")); Map.Actors.Value.Add("spawn" + kv.First, a); }