For anyone running into exceptions during Danni's content, i.e.:
It seems to be caused by Danni's normal sprite not being hidden, when it likely should be.
Simple fix, if you're happy to change the code, is to add the following line:
The file is
Not going to upload a fixed file, as the file is vanilla/mod-specific (hence not naming the line number).
Python:
Exception: DynamicImage u'Characters/Danni/[dan.outfit_non_nude]_[dan.pose].png': could not find image.
Simple fix, if you're happy to change the code, is to add the following line:
call hide_char_sprite (dan)
as shown in the code snippet below.
Python:
label danni_makeout:
player "Hey Danni. Where's Steph?"
dan "Making out with Freddy..."
"She says with a glint in her eye."
menu:
"Make out with Danni.":
$ advance_time_flag = True
player "Sounds like a good idea..."
dan "My thoughts exactly!"
##### Here. ⬇
call hide_char_sprite (dan)
##### Here. ⬆
if sis.corruption >=25 and sis.corruption < 50:
/game/chars/
char_Danni.rpy
Not going to upload a fixed file, as the file is vanilla/mod-specific (hence not naming the line number).