Merge pull request #8207 from obrakmann/map-chooser-overhaul

Split maps into system and custom maps in the map chooser
This commit is contained in:
Pavel Penev
2015-05-24 04:12:23 +03:00
6 changed files with 380 additions and 140 deletions

View File

@@ -274,5 +274,11 @@ namespace OpenRA
Map.PreloadRules();
RuleStatus = Map.InvalidCustomRules ? MapRuleStatus.Invalid : MapRuleStatus.Cached;
}
public void Invalidate()
{
Status = MapStatus.Unavailable;
RuleStatus = MapRuleStatus.Unknown;
}
}
}