From 8442dc4bf084eaaede71a4b722dabcfd6e0ddb44 Mon Sep 17 00:00:00 2001 From: Oliver Brakmann Date: Sun, 7 Jun 2015 15:45:16 +0200 Subject: [PATCH] Fixed missing ships when importing legacy RA maps --- OpenRA.Mods.Common/UtilityCommands/LegacyMapImporter.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/OpenRA.Mods.Common/UtilityCommands/LegacyMapImporter.cs b/OpenRA.Mods.Common/UtilityCommands/LegacyMapImporter.cs index 2ffd9c0395..06fd2f583d 100644 --- a/OpenRA.Mods.Common/UtilityCommands/LegacyMapImporter.cs +++ b/OpenRA.Mods.Common/UtilityCommands/LegacyMapImporter.cs @@ -178,6 +178,7 @@ namespace OpenRA.Mods.Common.UtilityCommands LoadActors(file, "STRUCTURES"); LoadActors(file, "UNITS"); LoadActors(file, "INFANTRY"); + LoadActors(file, "SHIPS"); LoadSmudges(file, "SMUDGE"); var wps = file.GetSection("Waypoints")