From 92ee2a56f1c0d5ceb2855e9c2efc04732388fc05 Mon Sep 17 00:00:00 2001 From: Iggy Date: Wed, 18 Sep 2024 12:00:03 -0300 Subject: [PATCH] Add exit game after ending 1 --- game/storyline.rpy | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/game/storyline.rpy b/game/storyline.rpy index 2452a39..a204465 100644 --- a/game/storyline.rpy +++ b/game/storyline.rpy @@ -57,6 +57,10 @@ init python: def end_story(): ending_image() - renpy.call("lending") + + if ending_route_number == 1: + renpy.quit() + else: + renpy.call("lending")