Merge pull request #2823 from ihptru/auto-map-dl

Auto map downloading
This commit is contained in:
Matthias Mailänder
2013-04-01 09:11:25 -07:00
5 changed files with 45 additions and 3 deletions

View File

@@ -54,7 +54,8 @@ namespace OpenRA.Network
// Don't have the map locally
if (!Game.modData.AvailableMaps.ContainsKey(Map))
return false;
if (!Game.Settings.Game.AllowDownloading)
return false;
return CompatibleVersion();
}