diff --git a/OpenRA.Mods.RA/Lint/CheckMapRules.cs b/OpenRA.Mods.RA/Lint/CheckMapRules.cs new file mode 100644 index 0000000000..895a2d4eaa --- /dev/null +++ b/OpenRA.Mods.RA/Lint/CheckMapRules.cs @@ -0,0 +1,31 @@ +#region Copyright & License Information +/* + * Copyright 2007-2014 The OpenRA Developers (see AUTHORS) + * This file is part of OpenRA, which is free software. It is made + * available to you under the terms of the GNU General Public License + * as published by the Free Software Foundation. For more information, + * see COPYING. + */ +#endregion + +using System; +using OpenRA.Traits; + +namespace OpenRA.Mods.RA +{ + public class CheckMapRules : ILintPass + { + public void Run(Action emitError, Action emitWarning, Map map) + { + try + { + Game.modData.RulesetCache.LoadMapRules(map); + } + catch (Exception e) + { + emitError(e.Message); + } + } + } +} + diff --git a/OpenRA.Mods.RA/OpenRA.Mods.RA.csproj b/OpenRA.Mods.RA/OpenRA.Mods.RA.csproj index f645279052..87c417404c 100644 --- a/OpenRA.Mods.RA/OpenRA.Mods.RA.csproj +++ b/OpenRA.Mods.RA/OpenRA.Mods.RA.csproj @@ -494,6 +494,7 @@ +