Fixed credits file not displaying.

This commit is contained in:
Storm Dragon 2025-03-15 03:13:52 -04:00
parent 8f81323668
commit 2c101d1778

13
menu.py
View File

@ -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.
@ -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: