From 3b626e5ff7e13a781a425bb457c7c61508d52f63 Mon Sep 17 00:00:00 2001 From: "C. Helmig" Date: Sun, 14 May 2017 21:18:20 +0200 Subject: [PATCH] Fixes tile error in #13047. See comment Item in #12868. --- OpenRA.Mods.D2k/UtilityCommands/D2kMapImporter.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/OpenRA.Mods.D2k/UtilityCommands/D2kMapImporter.cs b/OpenRA.Mods.D2k/UtilityCommands/D2kMapImporter.cs index 4b7d129697..86a1387ec3 100644 --- a/OpenRA.Mods.D2k/UtilityCommands/D2kMapImporter.cs +++ b/OpenRA.Mods.D2k/UtilityCommands/D2kMapImporter.cs @@ -406,6 +406,9 @@ namespace OpenRA.Mods.D2k.UtilityCommands for (var i = 0; i < 4; i++) if (tileIndex == indices[i]) return new TerrainTile(251, (byte)i); + + if (tileIndex == 322) + return new TerrainTile(215, 0); } if (tilesetName.ToLower() == "bloxwast.r8")