change: use millisecond precision by default

this is More Precise and will allow us to handle ratelimits Much Easier
This commit is contained in:
Christopher Felegy
2019-09-08 11:28:27 -04:00
parent 3c6b3765ab
commit bcb3534195

View File

@@ -151,6 +151,6 @@ namespace Discord
/// <returns> /// <returns>
/// The currently set <see cref="RateLimitPrecision"/>. /// The currently set <see cref="RateLimitPrecision"/>.
/// </returns> /// </returns>
public RateLimitPrecision RateLimitPrecision { get; set; } = RateLimitPrecision.Second; public RateLimitPrecision RateLimitPrecision { get; set; } = RateLimitPrecision.Millisecond;
} }
} }