diff --git a/DML.Client/DMLClient.cs b/DML.Client/DMLClient.cs index 07060f0..9b43d1f 100644 --- a/DML.Client/DMLClient.cs +++ b/DML.Client/DMLClient.cs @@ -6,11 +6,12 @@ namespace DML.Client { public static class DMLClient { - public static DiscordSocketClient Client { get; set; } = new DiscordSocketClient(new DiscordSocketConfig(){DefaultRetryMode = RetryMode.RetryRatelimit|RetryMode.RetryTimeouts}); + public static DiscordSocketClient Client { get; set; } = new DiscordSocketClient(new DiscordSocketConfig() { DefaultRetryMode = RetryMode.RetryRatelimit | RetryMode.RetryTimeouts }); public static async Task Login(string token) { - await Client.LoginAsync(TokenType.User, token); + // TODO: Fix Login with usertoken + //await Client.LoginAsync(TokenType.User, token); await Client.StartAsync(); await Task.Delay(1000);