Run spell check over solution

This commit is contained in:
RoosterDragon
2021-12-05 16:22:22 +00:00
committed by reaperrr
parent b3d290edd9
commit 727084c5fc
31 changed files with 34 additions and 34 deletions

View File

@@ -26,7 +26,7 @@ namespace OpenRA.Mods.Common.Warheads
[Desc("Types of damage that this warhead causes. Leave empty for no damage types.")]
public readonly BitSet<DamageType> DamageTypes = default(BitSet<DamageType>);
[Desc("Damage percentage versus each armortype.")]
[Desc("Damage percentage versus each armor type.")]
public readonly Dictionary<string, int> Versus = new Dictionary<string, int>();
public override bool IsValidAgainst(Actor victim, Actor firedBy)

View File

@@ -26,7 +26,7 @@ namespace OpenRA.Mods.Common.Warheads
[Desc("Type of smudge to apply to terrain.")]
public readonly HashSet<string> SmudgeType = new HashSet<string>();
[Desc("Percentual chance the smudge is created.")]
[Desc("Percentage chance the smudge is created.")]
public readonly int Chance = 100;
public override void DoImpact(in Target target, WarheadArgs args)