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;