diff --git a/src/Tgstation.Server.Host/Components/Interop/ChatCommand.cs b/src/Tgstation.Server.Host/Components/Interop/ChatCommand.cs index 1c49476b35..a8cc05feba 100644 --- a/src/Tgstation.Server.Host/Components/Interop/ChatCommand.cs +++ b/src/Tgstation.Server.Host/Components/Interop/ChatCommand.cs @@ -5,7 +5,7 @@ namespace Tgstation.Server.Host.Components.Interop sealed class ChatCommand { public string Command { get; set; } - public string Parameters { get; set; } + public string Params { get; set; } public User User { get; set; } } } diff --git a/src/Tgstation.Server.Host/Components/Watchdog/Watchdog.cs b/src/Tgstation.Server.Host/Components/Watchdog/Watchdog.cs index 0302b24fce..c0dff683b8 100644 --- a/src/Tgstation.Server.Host/Components/Watchdog/Watchdog.cs +++ b/src/Tgstation.Server.Host/Components/Watchdog/Watchdog.cs @@ -1059,7 +1059,7 @@ namespace Tgstation.Server.Host.Components.Watchdog var commandObject = new ChatCommand { Command = commandName, - Parameters = arguments, + Params = arguments, User = sender };