From 47b26d9a6c8e1276de2d4cef0bfb74067c55dfc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20N=C3=A9grier?= Date: Mon, 4 Apr 2022 14:07:13 +0200 Subject: [PATCH] Removing Customize as defaut scene --- front/src/Phaser/Login/EntryScene.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/front/src/Phaser/Login/EntryScene.ts b/front/src/Phaser/Login/EntryScene.ts index 2610023f..75846bf7 100644 --- a/front/src/Phaser/Login/EntryScene.ts +++ b/front/src/Phaser/Login/EntryScene.ts @@ -9,7 +9,6 @@ import { get } from "svelte/store"; import { localeDetector } from "../../i18n/locales"; import { PlayerTextures } from "../Entity/PlayerTextures"; import { PUSHER_URL } from "../../Enum/EnvironmentVariable"; -import { CustomizeSceneName } from "./CustomizeScene"; export const EntrySceneName = "EntryScene"; @@ -47,8 +46,7 @@ export class EntryScene extends Scene { // Let's rescale before starting the game // We can do it at this stage. waScaleManager.applyNewSize(); - // this.scene.start(nextSceneName); - this.scene.start(CustomizeSceneName); + this.scene.start(nextSceneName); }) .catch((err) => { const $LL = get(LL);