mirror of
https://github.com/danbulant/discord.js
synced 2026-07-06 03:31:03 +00:00
Fix parentheses typo in setPlayingGame args list
This commit is contained in:
parent
ea3ac96f13
commit
9325e1fbb5
1 changed files with 1 additions and 1 deletions
|
|
@ -495,7 +495,7 @@ export default class Client extends EventEmitter {
|
||||||
return this.setStatusIdle(callback);
|
return this.setStatusIdle(callback);
|
||||||
}
|
}
|
||||||
|
|
||||||
setPlayingGame(game, callback = (/*err, {}*/ => { })) {
|
setPlayingGame(game, callback = (/*err, {}*/) => { }) {
|
||||||
return this.setStatus(null, game, callback);
|
return this.setStatus(null, game, callback);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue