From 5549bab073e7f22fa54700e59eac60677e77ab0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Sun, 5 Jul 2015 08:30:15 +0200 Subject: [PATCH] fix nesting level does not match indentation --- OpenRA.Mods.Common/UtilityCommands/UpgradeRules.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/OpenRA.Mods.Common/UtilityCommands/UpgradeRules.cs b/OpenRA.Mods.Common/UtilityCommands/UpgradeRules.cs index ca3627dc08..f2d2f23de9 100644 --- a/OpenRA.Mods.Common/UtilityCommands/UpgradeRules.cs +++ b/OpenRA.Mods.Common/UtilityCommands/UpgradeRules.cs @@ -1305,12 +1305,14 @@ namespace OpenRA.Mods.Common.UtilityCommands rh.Value.Nodes.RemoveAll(n => wfsbNodes.Contains(n)); if (ibfNode.Any()) + { rh.Value.Nodes.RemoveAll(n => ibfNode.Contains(n)); Console.WriteLine("The 'ImagesByFullness' property from the removed RenderHarvester trait has been"); Console.WriteLine("replaced with a 'PrefixByFullness' property on the new WithHarvestAnimation trait."); Console.WriteLine("This cannot be reliably upgraded, as the actor sequences need to be adapted as well."); Console.WriteLine("Therefore, WithHarvestAnimation will use the default (no prefix) after upgrading."); Console.WriteLine("See RA's harvester for reference on how to re-implement this feature using the new trait."); + } } var rrh = node.Value.Nodes.FirstOrDefault(n => n.Key.StartsWith("-RenderHarvester"));