Fix custom chat parameters

This commit is contained in:
Jordan Brown
2018-11-24 14:26:39 -05:00
parent 3b3a449537
commit cbb1916aeb
2 changed files with 2 additions and 2 deletions
@@ -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; }
}
}
@@ -1059,7 +1059,7 @@ namespace Tgstation.Server.Host.Components.Watchdog
var commandObject = new ChatCommand
{
Command = commandName,
Parameters = arguments,
Params = arguments,
User = sender
};