mirror of
https://github.com/danbulant/discord.js
synced 2026-06-10 02:02:40 +00:00
Capitalise two letters
This commit is contained in:
parent
ecbc591c95
commit
36f4df2931
1 changed files with 2 additions and 2 deletions
|
|
@ -150,7 +150,7 @@ class WebSocketManager extends EventEmitter {
|
||||||
this._sendNewIdentify();
|
this._sendNewIdentify();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.client.emit('debug', 'identifying as resumed session');
|
this.client.emit('debug', 'Identifying as resumed session');
|
||||||
const payload = {
|
const payload = {
|
||||||
token: this.client.token,
|
token: this.client.token,
|
||||||
session_id: this.sessionID,
|
session_id: this.sessionID,
|
||||||
|
|
@ -173,7 +173,7 @@ class WebSocketManager extends EventEmitter {
|
||||||
if (this.client.options.shard_count > 0) {
|
if (this.client.options.shard_count > 0) {
|
||||||
payload.shard = [Number(this.client.options.shard_id), Number(this.client.options.shard_count)];
|
payload.shard = [Number(this.client.options.shard_id), Number(this.client.options.shard_count)];
|
||||||
}
|
}
|
||||||
this.client.emit('debug', 'identifying as new session');
|
this.client.emit('debug', 'Identifying as new session');
|
||||||
this.send({
|
this.send({
|
||||||
op: Constants.OPCodes.IDENTIFY,
|
op: Constants.OPCodes.IDENTIFY,
|
||||||
d: payload,
|
d: payload,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue