FIX: couldn't access to an anonymous private map

This commit is contained in:
kharhamel 2020-12-01 19:34:36 +01:00
parent d36cec23a7
commit 1971d26dc0
2 changed files with 3 additions and 14 deletions

View file

@ -31,7 +31,8 @@ export class EntryScene extends Scene {
create() {
gameManager.init(this.scene).then(() => {
this.scene.start(LoginSceneName);
}).catch(() => {
}).catch((err) => {
console.error(err)
this.scene.start(FourOFourSceneName, {
url: window.location.pathname.toString()
});