diff --git a/menu.py b/menu.py index cebbde0..c2c0183 100644 --- a/menu.py +++ b/menu.py @@ -19,8 +19,9 @@ from os import listdir from os.path import join from inspect import isfunction from .speech import Speech -from .sound import adjust_master_volume, adjust_bgm_volume, adjust_sfx_volume +from .sound import adjust_master_volume, adjust_bgm_volume, adjust_sfx_volume, play_bgm from .display import display_text +from .services import PathService def game_menu(sounds, *options): """Display and handle the main game menu. @@ -246,7 +247,7 @@ def instructions(): def credits(): """Display game credits from file. - + Reads and displays credits from 'files/credits.txt'. Adds game name header before displaying. If file is missing, displays an error message. @@ -259,11 +260,13 @@ def credits(): try: with open('files/credits.txt', 'r') as f: info = f.readlines() - # Add the header - from .config import gameName - info.insert(0, gameName + ": brought to you by Storm Dragon") - except: + + pathService = PathService.get_instance() + info.insert(0, pathService.gameName + "\n") + except Exception as e: + print(f"Error in credits: {e}") info = ["Credits file is missing."] + display_text(info) try: