From 44b2e437f363c559f2a8fa69c0d45388b4085c49 Mon Sep 17 00:00:00 2001 From: Dave Roman <43916038+MrDave1999@users.noreply.github.com> Date: Thu, 5 Sep 2024 19:28:57 -0500 Subject: [PATCH] fix!: fix misspelling of SatchelChargesAmour and MolotovAmour (#56) --- .../Combos/Benefits/{MolotovAmour.cs => MolotovArmour.cs} | 2 +- .../{SatchelChargesAmour.cs => SatchelChargesArmour.cs} | 2 +- src/Application/Players/Combos/ServiceCollectionExtensions.cs | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) rename src/Application/Players/Combos/Benefits/{MolotovAmour.cs => MolotovArmour.cs} (91%) rename src/Application/Players/Combos/Benefits/{SatchelChargesAmour.cs => SatchelChargesArmour.cs} (90%) 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;