Add a callback to setPlayingGame

This commit is contained in:
meew0
2015-12-31 20:20:36 +01:00
parent 2c565ebfaf
commit f018ccebed

View File

@@ -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);
}
}