CashTrickler style fixes and Period -> Interval rename

This commit is contained in:
reaperrr
2016-11-06 17:42:48 +01:00
parent bc1e2a7058
commit 7dcda5db30
5 changed files with 24 additions and 12 deletions

View File

@@ -740,6 +740,10 @@ namespace OpenRA.Mods.Common.UtilityCommands
node.Value.Nodes.Add(gcoc);
RenameNodeKey(capture, "Amount");
}
var period = trickler.Value.Nodes.FirstOrDefault(n => n.Key == "Period");
if (period != null)
period.Key = "Interval";
}
}