- Oct 6, 2017
- 1,258
- 429
Crash Bug Fix
After the intro when you've changed the MC name and you reload the game script.
Change line 5 of
to
I hope you find that of some help.
After the intro when you've changed the MC name and you reload the game script.
Code:
I'm sorry, but an uncaught exception occurred.
While running game code:
File "game/script.rpy", line 58, in script call
call c00 from _call_c00
File "game/C00.rpy", line 6, in script call
call s01_Moms_calling from _call_s01_Moms_calling
File "game/C00.rpy", line 96, in script call
label s01_Moms_calling:
File "game/name_reverts_fix.rpy", line 2, in script
python:
File "game/name_reverts_fix.rpy", line 5, in <module>
if name in mc:
NameError: name 'name' is not defined
game/name_reverts_fix.rpy
fromif name in mc:
if hasattr(mc, 'name'):
'name'
is an attribute of the Character object mc
and not an iterable element.I hope you find that of some help.