feature: adjust the ratelimit for reactions (#1108)

* feature: adjust the ratelimit for reactions

allows users to add reactions quickly

* fix: don't force DEBUG_LIMITS

* fix: undefined behavior using DateTime on intel architerctures

it's fine

* fix: ensure add/del rxn ends up in the same bucket
This commit is contained in:
Christopher F
2018-09-30 17:10:10 -04:00
committed by GitHub
parent c9ba79ec80
commit 6b21b11f7d
3 changed files with 14 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
using System.Threading;
using System.Threading;
namespace Discord
{
@@ -22,6 +22,7 @@ namespace Discord
internal bool IgnoreState { get; set; }
internal string BucketId { get; set; }
internal bool IsClientBucket { get; set; }
internal bool IsReactionBucket { get; set; }
internal static RequestOptions CreateOrClone(RequestOptions options)
{