Skip to content

Commit

Permalink
fix!: fix misspelling of SatchelChargesAmour and MolotovAmour (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
MrDave1999 authored Sep 6, 2024
1 parent db563dc commit 44b2e43
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
4 changes: 2 additions & 2 deletions src/Application/Players/Combos/ServiceCollectionExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ public static IServiceCollection AddComboServices(this IServiceCollection servic
services
.AddSingleton<IBenefit, HealthArmour>()
.AddSingleton<IBenefit, GrenadesArmour>()
.AddSingleton<IBenefit, MolotovAmour>()
.AddSingleton<IBenefit, SatchelChargesAmour>()
.AddSingleton<IBenefit, MolotovArmour>()
.AddSingleton<IBenefit, SatchelChargesArmour>()
.AddSingleton<IBenefit, TearGasHealth>();

return services;
Expand Down

0 comments on commit 44b2e43

Please sign in to comment.