quick fix

This commit is contained in:
caesarakalaeii 2023-08-12 20:48:04 +02:00
parent 739a20e671
commit 5ce885955e
1 changed files with 3 additions and 1 deletions

View File

@ -193,6 +193,7 @@ public class ForceStartCommand : APICommand
var c = new Command
{
Action = ActionType.Start,
StreamerId = player.SteamID,
ExecutorName = "Chat Test"
};
return c;
@ -212,6 +213,7 @@ public class HelpCommand : APICommand
var c = new Command
{
Action = ActionType.Help,
StreamerId = player.SteamID,
ExecutorName = "Chat Test"
};
return c;
@ -318,7 +320,7 @@ public class SetStreamerCommand : APICommand
var splits = msg.Split(" ");
var c = new Command
{
StreamerId = Convert.ToUInt64(splits[1]),
StreamerId = Convert.ToUInt64(splits[1]), // needs fixing, will check if that is already a streamer
Action = ActionType.SetStreamer,
ExecutorName = "Chat Test"
};