From 3b59afcd4fa9ceeb6e52bf52d896b28c2ab129fa Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Thu, 26 Aug 2010 19:24:45 +1200 Subject: [PATCH] Fix ralint --- RALint/RALint.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RALint/RALint.cs b/RALint/RALint.cs index c3f0c4d9a2..3ff50c4fab 100644 --- a/RALint/RALint.cs +++ b/RALint/RALint.cs @@ -44,7 +44,7 @@ namespace RALint Rules.LoadRules(Game.modData.Manifest, new Map()); // all the @something names which actually EXIST. - var psuedoPrereqs = Rules.Info.Values.Select(a => a.Traits.GetOrDefault()).Where(b => b != null) + var psuedoPrereqs = Rules.Info.Values.Select(a => a.Traits.GetOrDefault()).Where(b => b != null) .Select(b => b.AlternateName).Where(n => n != null).SelectMany(a => a).Select(a => a.ToLowerInvariant()).Distinct(); ValidPrereqs = Rules.Info.Keys.Concat(psuedoPrereqs).ToDictionary(a => a, a => 0);