From c10df031bd463c28c0d23a05c08dcc7435e10d3f Mon Sep 17 00:00:00 2001 From: Scott_NZ Date: Thu, 6 Dec 2012 11:38:34 +1300 Subject: [PATCH] Convert classic waypoints to waypoint not mpspawn --- 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 0a13b6ff19..cfa4f68cb7 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 @@ -174,10 +174,10 @@ namespace OpenRA.Editor // Add waypoint actors foreach( var kv in wps ) { - var a = new ActorReference("mpspawn"); + var a = new ActorReference("waypoint"); a.Add(new LocationInit((CPos)kv.Second)); a.Add(new OwnerInit("Neutral")); - Map.Actors.Value.Add("spawn" + kv.First, a); + Map.Actors.Value.Add("waypoint" + kv.First, a); } }