diff --git a/src/Application/Players/Combos/Benefits/MolotovAmour.cs b/src/Application/Players/Combos/Benefits/MolotovArmour.cs similarity index 91% rename from src/Application/Players/Combos/Benefits/MolotovAmour.cs rename to src/Application/Players/Combos/Benefits/MolotovArmour.cs index f5aace6d..994d1ca8 100644 --- a/src/Application/Players/Combos/Benefits/MolotovAmour.cs +++ b/src/Application/Players/Combos/Benefits/MolotovArmour.cs @@ -1,6 +1,6 @@ namespace CTF.Application.Players.Combos.Benefits; -public class MolotovAmour : IBenefit +public class MolotovArmour : IBenefit { public string Name => "2 Molotov cocktail and 20 Armour"; public int RequiredPoints => 25; diff --git a/src/Application/Players/Combos/Benefits/SatchelChargesAmour.cs b/src/Application/Players/Combos/Benefits/SatchelChargesArmour.cs similarity index 90% rename from src/Application/Players/Combos/Benefits/SatchelChargesAmour.cs rename to src/Application/Players/Combos/Benefits/SatchelChargesArmour.cs index 83c55cab..f29788da 100644 --- a/src/Application/Players/Combos/Benefits/SatchelChargesAmour.cs +++ b/src/Application/Players/Combos/Benefits/SatchelChargesArmour.cs @@ -1,6 +1,6 @@ namespace CTF.Application.Players.Combos.Benefits; -public class SatchelChargesAmour : IBenefit +public class SatchelChargesArmour : IBenefit { public string Name => "4 Satchel charges and 30 Armour"; public int RequiredPoints => 40; diff --git a/src/Application/Players/Combos/ServiceCollectionExtensions.cs b/src/Application/Players/Combos/ServiceCollectionExtensions.cs index 3a3edde3..b52114e9 100644 --- a/src/Application/Players/Combos/ServiceCollectionExtensions.cs +++ b/src/Application/Players/Combos/ServiceCollectionExtensions.cs @@ -7,8 +7,8 @@ public static IServiceCollection AddComboServices(this IServiceCollection servic services .AddSingleton() .AddSingleton() - .AddSingleton() - .AddSingleton() + .AddSingleton() + .AddSingleton() .AddSingleton(); return services;