.Any(), .Count() -> .Count or .Length
This commit is contained in:
committed by
atlimit8
parent
6eb4fe8980
commit
79f321cb44
@@ -24,7 +24,7 @@ namespace OpenRA.Mods.Common.UpdateRules.Rules
|
||||
|
||||
public override IEnumerable<string> AfterUpdate(ModData modData)
|
||||
{
|
||||
if (locations.Any())
|
||||
if (locations.Count > 0)
|
||||
yield return "[D2k]ResourceRenderer has been added.\n" +
|
||||
"You need to adjust the field RenderTypes on trait [D2k]ResourceRenderer\n" +
|
||||
"on the following actors:\n" +
|
||||
|
||||
@@ -58,7 +58,7 @@ namespace OpenRA.Mods.Common.UpdateRules.Rules
|
||||
|
||||
public override IEnumerable<string> AfterUpdate(ModData modData)
|
||||
{
|
||||
if (weaponsToUpdate.Any())
|
||||
if (weaponsToUpdate.Count > 0)
|
||||
yield return "Add a ScreenShakeWarhead to the following weapons:\n" +
|
||||
UpdateUtils.FormatMessageList(weaponsToUpdate.Select(x => $"Weapon `{x.Item1}`, used by trait `{x.Item2}` on actor {x.Item3}"));
|
||||
|
||||
|
||||
@@ -29,11 +29,11 @@ namespace OpenRA.Mods.Common.UpdateRules.Rules
|
||||
|
||||
public override IEnumerable<string> AfterUpdate(ModData modData)
|
||||
{
|
||||
if (overrideLocations.Any())
|
||||
if (overrideLocations.Count > 0)
|
||||
yield return "Region-specific image overrides are no longer supported. The following definitions must be replaced:\n" +
|
||||
UpdateUtils.FormatMessageList(overrideLocations);
|
||||
|
||||
if (panelLocations.Any())
|
||||
if (panelLocations.Count > 0)
|
||||
yield return "The following definitions appear to be panels, but could not be converted to the new PanelRegion format.\n" +
|
||||
"You may wish to define PanelRegion/PanelSides manually to reduce duplication:\n" +
|
||||
UpdateUtils.FormatMessageList(panelLocations);
|
||||
@@ -186,7 +186,7 @@ namespace OpenRA.Mods.Common.UpdateRules.Rules
|
||||
// Reformat region as a list
|
||||
regionsNode.AddNode(n.Key, n.NodeValue<int[]>());
|
||||
|
||||
if (n.Value.Nodes.Any())
|
||||
if (n.Value.Nodes.Count > 0)
|
||||
overrideLocations.Add($"{chromeProviderNode.Key}.{n.Key} ({chromeProviderNode.Location.Filename})");
|
||||
}
|
||||
|
||||
@@ -199,7 +199,7 @@ namespace OpenRA.Mods.Common.UpdateRules.Rules
|
||||
if (!ExtractPanelDefinition(chromeProviderNode, regionsNode))
|
||||
panelLocations.Add($"{chromeProviderNode.Key} ({chromeProviderNode.Location.Filename})");
|
||||
|
||||
if (regionsNode.Value.Nodes.Any())
|
||||
if (regionsNode.Value.Nodes.Count > 0)
|
||||
chromeProviderNode.AddNode(regionsNode);
|
||||
|
||||
yield break;
|
||||
|
||||
@@ -29,7 +29,7 @@ namespace OpenRA.Mods.Common.UpdateRules.Rules
|
||||
+ "You may have to define it manually now in the following places:\n"
|
||||
+ UpdateUtils.FormatMessageList(missingActorTypes.Select(n => n.Item1 + " (" + n.Item2 + ")"));
|
||||
|
||||
if (missingActorTypes.Any())
|
||||
if (missingActorTypes.Count > 0)
|
||||
yield return message;
|
||||
|
||||
missingActorTypes.Clear();
|
||||
|
||||
@@ -29,7 +29,7 @@ namespace OpenRA.Mods.Common.UpdateRules.Rules
|
||||
+ "You may have to set it manually now in the following places:\n"
|
||||
+ UpdateUtils.FormatMessageList(nonVTOLs.Select(n => n.Item1 + " (" + n.Item2 + ")"));
|
||||
|
||||
if (nonVTOLs.Any())
|
||||
if (nonVTOLs.Count > 0)
|
||||
yield return message;
|
||||
|
||||
nonVTOLs.Clear();
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
#endregion
|
||||
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
namespace OpenRA.Mods.Common.UpdateRules.Rules
|
||||
{
|
||||
@@ -27,7 +26,7 @@ namespace OpenRA.Mods.Common.UpdateRules.Rules
|
||||
|
||||
public override IEnumerable<string> AfterUpdate(ModData modData)
|
||||
{
|
||||
if (locations.Any())
|
||||
if (locations.Count > 0)
|
||||
yield return "The WithPermanentInjury trait has been removed from the following actors.\n" +
|
||||
"You must manually define TakeCover with a negative ProneTime and use\n" +
|
||||
"GrantConditionOnDamageState/-Health with 'GrantPermanently: true'\n" +
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
#endregion
|
||||
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
namespace OpenRA.Mods.Common.UpdateRules.Rules
|
||||
{
|
||||
@@ -24,7 +23,7 @@ namespace OpenRA.Mods.Common.UpdateRules.Rules
|
||||
|
||||
public override IEnumerable<string> AfterUpdate(ModData modData)
|
||||
{
|
||||
if (locations.Any())
|
||||
if (locations.Count > 0)
|
||||
yield return "The Spins property has been refactored to MaximumSpinSpeed.\n" +
|
||||
"MaximumSpinSpeed defaults to 'unlimited', while disabling is done by setting it to 0.\n" +
|
||||
"You may want to set a custom MaximumSpinSpeed limiting value in the following places:\n" +
|
||||
|
||||
Reference in New Issue
Block a user