Fixed credits file not displaying.
This commit is contained in:
parent
8f81323668
commit
2c101d1778
15
menu.py
15
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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user