mirror of
https://github.com/danbulant/discord.js
synced 2026-05-27 22:11:53 +00:00
god damn it i forgot to save the file the first time
This commit is contained in:
parent
eeded90782
commit
eb40a663dd
1 changed files with 1 additions and 1 deletions
|
|
@ -200,7 +200,7 @@ class StreamDispatcher extends Writable {
|
|||
setTimeout(done.bind(this), next);
|
||||
}
|
||||
if (this._sdata.sequence >= (2 ** 16) - 1) this._sdata.sequence = -1;
|
||||
if (this._sdata.timestamp >= (2 ** 32) - 1) this._sdata.timestamp = -TIMESTAMP_INC;
|
||||
if (this._sdata.timestamp >= (2 ** 32) - TIMESTAMP_INC) this._sdata.timestamp = -TIMESTAMP_INC;
|
||||
this._sdata.sequence++;
|
||||
this._sdata.timestamp += TIMESTAMP_INC;
|
||||
this.count++;
|
||||
|
|
|
|||
Loading…
Reference in a new issue