diff --git a/ui/round/src/moveOn.js b/ui/round/src/moveOn.js index 59e3e98554..b9171b2a97 100644 --- a/ui/round/src/moveOn.js +++ b/ui/round/src/moveOn.js @@ -27,7 +27,7 @@ module.exports = function(ctrl, key) { }.bind(this); this.next = function() { - if (!this.value || game.isPlayerTurn(ctrl.data)) return; + if (!this.value || !game.isPlayerPlaying(ctrl.data) || game.isPlayerTurn(ctrl.data)) return; xhr.next(ctrl).then(function(data) { if (data.next && this.value) { ctrl.vm.redirecting = true;