From b2b241da10a09a569ef7eeb6d62a328bc4d6299c Mon Sep 17 00:00:00 2001 From: Map Date: Sun, 4 Aug 2024 11:50:04 -0500 Subject: [PATCH] Fix exception on startup because of a missing song --- game/script.rpy | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/game/script.rpy b/game/script.rpy index 80561b7..5148698 100644 --- a/game/script.rpy +++ b/game/script.rpy @@ -40,10 +40,7 @@ define config.mixed_position = False define config.defer_tl_scripts = True label before_main_menu: - if not persistent.epilogue: - $ renpy.music.play("" + DEFAULT_MUSIC_FILEPATH + "mus_titlescreen" + DEFAULT_MUSIC_EXTENSION, channel="music", loop=True) - else: - $ renpy.music.play("" + DEFAULT_MUSIC_FILEPATH + "mus_complete" + DEFAULT_MUSIC_EXTENSION, channel="music", loop=True) + $ renpy.music.play("" + DEFAULT_MUSIC_FILEPATH + "mus_titlescreen" + DEFAULT_MUSIC_EXTENSION, channel="music", loop=True) if (persistent.languaged_up is None): $ preferences.set_volume('ui', config.default_sfx_volume)