From f16986e308140022473e5380ec44162b62ae085a Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Mon, 10 May 2010 21:22:05 +1200 Subject: [PATCH] fix cnc new map support --- OpenRA.Editor/Form1.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Editor/Form1.cs b/OpenRA.Editor/Form1.cs index 0e07607dba..b6496715e7 100644 --- a/OpenRA.Editor/Form1.cs +++ b/OpenRA.Editor/Form1.cs @@ -392,7 +392,7 @@ namespace OpenRA.Editor map.MapResources = new TileReference[1, 1]; map.MapTiles = new TileReference[1, 1] { { new TileReference { - type = (ushort)0xffffu, + type = currentMod == "cnc" ? (ushort)0xffu : (ushort)0xffffu, image = (byte)0xffu, index = (byte)0xffu } } };