Getting an error going into the main menu on startup:
I'm sorry, but an uncaught exception occurred.
While running game code:
File "game/screens.rpy", line 739, in execute
screen main_menu():
File "game/screens.rpy", line 739, in execute
screen main_menu():
File "game/screens.rpy", line 743, in execute
on "show" action [Play(channel="music", file=pickRandomMainMenuMusic()), Function(update_game_time)]
File "game/screens.rpy", line 743, in keywords
on "show" action [Play(channel="music", file=pickRandomMainMenuMusic()), Function(update_game_time)]
File "game/screens.rpy", line 743, in <module>
on "show" action [Play(channel="music", file=pickRandomMainMenuMusic()), Function(update_game_time)]
File "game/options.rpy", line 86, in pickRandomMainMenuMusic
elif isValentinesDay():
NameError: name 'isValentinesDay' is not defined
Looks like the function is mispelled in both HelperFunctions and Screens (missing an "n"):
def isValentiesDay():
return ((getCurrentDay() >= 11 and getCurrentDay() < 17) and getCurrentMonth() == 2)