diff --git a/Application/Extensions/CommandExtensions.cs b/Application/Extensions/CommandExtensions.cs
index d2681363..b99f5840 100644
--- a/Application/Extensions/CommandExtensions.cs
+++ b/Application/Extensions/CommandExtensions.cs
@@ -10,23 +10,12 @@ namespace IW4MAdmin.Application.Extensions
{
public static class CommandExtensions
{
- ///
- /// determines the command configuration name for given manager command
- ///
- /// command to determine config name for
- ///
- public static string CommandConfigNameForType(this IManagerCommand command)
- {
- return command.GetType() == typeof(ScriptCommand)
- ? $"{char.ToUpper(command.Name[0])}{command.Name.Substring(1)}Command"
- : command.GetType().Name;
- }
-
public static IList