diff --git a/client/src/events.jsx b/client/src/events.jsx index 12653b62..9c3c2d8d 100644 --- a/client/src/events.jsx +++ b/client/src/events.jsx @@ -180,8 +180,8 @@ function registerEvents(store) { setPvp(false); const player = v.players.find(p => p.id === account.id); store.dispatch(actions.setPlayer(player)); - - if (tutorial && process.env.NODE_ENV !== 'development') tutorialVbox(player, store, tutorial); + + if (tutorial) tutorialVbox(player, store, tutorial); if (v.phase === 'Finished') { ws.sendAccountInstances(); @@ -216,7 +216,6 @@ function registerEvents(store) { } function promptRegister() { - store.dispatch(actions.setTutorial(99)); store.dispatch(actions.setInstance(null)); }