From f018ccebed2f6db39de8d461f91056d3dc2d8b23 Mon Sep 17 00:00:00 2001 From: meew0 Date: Thu, 31 Dec 2015 20:20:36 +0100 Subject: [PATCH] Add a callback to setPlayingGame --- src/Client/Client.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Client/Client.js b/src/Client/Client.js index ff0edcdac..f2d4e1562 100644 --- a/src/Client/Client.js +++ b/src/Client/Client.js @@ -498,7 +498,7 @@ export default class Client extends EventEmitter { return this.setStatusIdle(callback); } - setPlayingGame(game) { - return this.setStatus(null, game); + setPlayingGame(game, callback) { + return this.setStatus(null, game, callback); } }