From dc211cc729b05f6e4f5276307774abcb3d5f0fd4 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Tue, 23 Dec 2014 09:09:01 +1300 Subject: [PATCH] Fix an unrelated editor regression. --- OpenRA.Game/Map/Map.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/OpenRA.Game/Map/Map.cs b/OpenRA.Game/Map/Map.cs index 52a3e346db..76a40e0f1f 100644 --- a/OpenRA.Game/Map/Map.cs +++ b/OpenRA.Game/Map/Map.cs @@ -225,6 +225,7 @@ namespace OpenRA Author = "Your name here", MapSize = new int2(size), Tileset = tileset.Id, + Videos = new MapVideos(), Options = new MapOptions(), MapResources = Exts.Lazy(() => new CellLayer(tileShape, size)), MapTiles = makeMapTiles, @@ -232,6 +233,7 @@ namespace OpenRA Actors = Exts.Lazy(() => new Dictionary()), Smudges = Exts.Lazy(() => new List()) }; + map.PostInit(); return map;