Fixed credits file not displaying.

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

15
menu.py
View File

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