diff --git a/client/src/events.jsx b/client/src/events.jsx index 1d784dc0..dbbbc76a 100644 --- a/client/src/events.jsx +++ b/client/src/events.jsx @@ -84,7 +84,9 @@ function registerEvents(store) { // stop skipping resolutions store.dispatch(actions.setSkip(false)); // update the game - store.dispatch(actions.setGame(currentGame)); + store.dispatch(actions.setGame(game)); + // get the latest state and restart polling + ws.sendGameState(currentGame.id); return true; }); }