diff --git a/PluralKit.Bot/CommandSystem/Context/Context.cs b/PluralKit.Bot/CommandSystem/Context/Context.cs index 0b21719d..30e135ec 100644 --- a/PluralKit.Bot/CommandSystem/Context/Context.cs +++ b/PluralKit.Bot/CommandSystem/Context/Context.cs @@ -21,8 +21,6 @@ public class Context { private readonly ILifetimeScope _provider; - private readonly Parameters _parameters; - private readonly IMetrics _metrics; private readonly CommandMessageService _commandMessageService; @@ -43,7 +41,7 @@ public class Context _metrics = provider.Resolve(); _provider = provider; _commandMessageService = provider.Resolve(); - _parameters = new Parameters(message.Content?.Substring(commandParseOffset)); + Parameters = new Parameters(message.Content?.Substring(commandParseOffset)); Rest = provider.Resolve(); Cluster = provider.Resolve(); }