mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-16 11:33:30 +01:00
Fix parentheses typo in setPlayingGame args list
This commit is contained in:
@@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user