public async Task UpdateGame(CommandContext commandContext, [RemainingText] string name)
        {
            Bot.GameName = name;
            await Bot.SetTimer();

            await commandContext.RespondAsync($"Game set to {name}");
        }