diff --git a/src/shattered_sword/Scenes/SceneWithStory.ts b/src/shattered_sword/Scenes/SceneWithStory.ts index a864940..4765450 100644 --- a/src/shattered_sword/Scenes/SceneWithStory.ts +++ b/src/shattered_sword/Scenes/SceneWithStory.ts @@ -171,7 +171,7 @@ export default class SceneWithStory extends Scene { } this.currentSpeaker = this.story.texts[this.storyProgress].speaker; this.currentContent = this.story.texts[this.storyProgress].content; - this.storytextLabel.text = this.currentSpeaker?(this.currentSpeaker+":"):"" + '\n' + this.currentContent; + this.storytextLabel.text = (this.currentSpeaker?(this.currentSpeaker+":"):("")) + '\n' + this.currentContent; } else { this.currentMode = Mode.GAME_MODE;