remove tutorial stage check for reset

This commit is contained in:
Mashy 2019-10-27 20:22:41 +10:00
parent 52e67e49d0
commit 0dfe181d52

View File

@ -26,7 +26,7 @@ const addState = connect(
dispatch(actions.setNav('play'));
dispatch(actions.setGame(null));
dispatch(actions.setInstance(null));
if (tutorial && tutorial < 7) dispatch(actions.setTutorial(1));
if (tutorial) dispatch(actions.setTutorial(1));
}
return { leave };