Automatic game switching not working

This seems like a feature that would need some work to avoid surprising players who don’t understand what they are getting into. But you could prototype it yourself by pasting something like this into the JavaScript console:

setInterval(function() {
  if($('.turn-indicator .count').hasClass('active') &&
     !$('button.pass-button').length &&
     !$('button.submit-button').length  &&
     !$('button#game-stone-removal-accept').length
    ) {
    $('.turn-indicator').trigger('click');
  }
}, 1000);

This should check every second and take you to an active game, from any page except one where you have a “pass”, “submit move”, or “accept remove stones” button available.

I tried it out myself on the beta site, but use at your own risk! Also, if you want to turn it off, just reload the page :grin:

4 Likes