don't show companion selection during first connexion flow

This commit is contained in:
Johannes Berthel 2021-04-06 18:36:46 +02:00
parent 6c512fb7cd
commit 7c6b73efdb
2 changed files with 2 additions and 4 deletions

View file

@ -1,5 +1,4 @@
import {EnableCameraSceneName} from "./EnableCameraScene";
import {SelectCompanionSceneName} from "./SelectCompanionScene";
import {TextField} from "../Components/TextField";
import Image = Phaser.GameObjects.Image;
import Rectangle = Phaser.GameObjects.Rectangle;
@ -116,7 +115,7 @@ export class CustomizeScene extends AbstractCharacterScene {
gameManager.setCharacterLayers(layers);
this.scene.sleep(CustomizeSceneName);
gameManager.tryResumingGame(this, localUserStore.wasCompanionSet() ? EnableCameraSceneName : SelectCompanionSceneName);
gameManager.tryResumingGame(this, EnableCameraSceneName);
});
this.input.keyboard.on('keyup-RIGHT', () => this.moveCursorHorizontally(1));