Merge pull request #473 from thecodingmachine/master

hotfixes from master
This commit is contained in:
Kharhamel 2020-12-03 18:48:43 +01:00 committed by GitHub
commit 57a59cba8e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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()
});