freddygonzo
Member
- Apr 26, 2024
- 410
- 519
- 179
DS23G
There's a critical bug here in script.rpy that can fail a return command, kicking to the main menu.
You leave the main script label route by jump here instead of call. Within the Neela event, you go straight to the day_4_evening_menu, either over the day4_neela_ero label or not.
When you use the "Wait till nightfall." option in day_4_evening_menu with its return command , then the game can't find its origin label anymore thus soft-crashes to the main menu.
You need to change the line to call day4_evening_corridor_neela in script.rpy.
There's a critical bug here in script.rpy that can fail a return command, kicking to the main menu.
Code:
if day4_bath_set_up_date_evening_neela and failure_to_pay_1_agree_to_rollo_deal == False:
scene day 4 evening waiting for Neela
with fade
mc "{i}I wonder where Neela is?{/i}"
mc "{i}Maybe I should look for her.{/i}"
jump day4_evening_corridor_neela
else:
pass
When you use the "Wait till nightfall." option in day_4_evening_menu with its return command , then the game can't find its origin label anymore thus soft-crashes to the main menu.
You need to change the line to call day4_evening_corridor_neela in script.rpy.