From f10111bfa3a1ae7c7b3b3d7e78d0e1422882b00b Mon Sep 17 00:00:00 2001 From: LoafyLemon Date: Sun, 2 Jul 2023 01:33:24 +0100 Subject: [PATCH] Hotfix * The previous method wouldn't work due to an out of context jump at the end... --- game/scripts/characters/snape/summon.rpy | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/game/scripts/characters/snape/summon.rpy b/game/scripts/characters/snape/summon.rpy index cffe8900..e67fa4a5 100644 --- a/game/scripts/characters/snape/summon.rpy +++ b/game/scripts/characters/snape/summon.rpy @@ -50,8 +50,12 @@ label summon_snape: sna "Whatever it is, it can wait, let's sit down first, shall we." ("snape_01") call setup_fireplace_hangout(char="snape") - call ss_he_wine_repeat - + call bld + gen "Want to do the honours?" ("base", xpos="far_left", ypos="head") + sna "With pleasure!" ("snape_02", ypos="head") + pause.1 + + call give_gift("You hand over the bottle you found in the cupboard to professor Snape...", wine_ITEM) $ states.gen.stats.hangouts_with_snape += 1 $ wine_ITEM.owned -= 1