I have this script added in my own rpy file.
config.developer = True
config.console = True
config.default_music_volume = 0.15
config.default_sfx_volume = 0.5
config.keymap['toggle_afm'].append("m")
The simple Dev console config which I add to pretty much every single Renpy game I have is causing errors with this game for some reason.
#1 :I'm sorry, but an uncaught exception occurred.
While running game code:
File "game/2navigation.rpy", line 398, in script
$ renpy.show(temp)
File "game/2navigation.rpy", line 398, in <module>
$ renpy.show(temp)
Exception: Image 'navi tahlia day' does not accept attributes 'tahlia'.
I'm sorry, but an uncaught exception occurred.
#2{ While running game code:
File "game/2navigation.rpy", line 432, in script
$ renpy.show(temp)
File "game/2navigation.rpy", line 432, in <module>
$ renpy.show(temp)
Exception: Image 'navi alexia day' does not accept attributes 'alexia'.
#3: I'm sorry, but an uncaught exception occurred.
While running game code:
File "game/2navigation.rpy", line 415, in script
$ renpy.show(temp)
File "game/2navigation.rpy", line 415, in <module>
$ renpy.show(temp)
Exception: Image 'navi kathy day' does not accept attributes 'kathy'.
If I remove config.developer = True from my rpy file, I don't get the errors. So, clearly this dev doesn't want us using dev config?