Allow empty save data on local mode
This commit is contained in:
parent
6a6d676cb2
commit
773e241735
|
@ -100,7 +100,7 @@ export class LoginPhase extends Phase {
|
||||||
return null;
|
return null;
|
||||||
} else {
|
} else {
|
||||||
this.scene.gameData.loadSystem().then(success => {
|
this.scene.gameData.loadSystem().then(success => {
|
||||||
if (success)
|
if (success || bypassLogin)
|
||||||
this.end();
|
this.end();
|
||||||
else {
|
else {
|
||||||
this.scene.ui.setMode(Mode.MESSAGE);
|
this.scene.ui.setMode(Mode.MESSAGE);
|
||||||
|
|
Loading…
Reference in New Issue