From ef3913bcfa83bb29eaecfbfb390d794310cab015 Mon Sep 17 00:00:00 2001 From: Johnny28 Date: Thu, 17 Oct 2024 12:12:00 +0200 Subject: [PATCH] Minor fix * Stripping adjustment during Hermione panty thief. --- .../hermione/events/odd_jobs/panty_thief.rpy | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/game/scripts/characters/hermione/events/odd_jobs/panty_thief.rpy b/game/scripts/characters/hermione/events/odd_jobs/panty_thief.rpy index 8b176d8c..7f79e11e 100644 --- a/game/scripts/characters/hermione/events/odd_jobs/panty_thief.rpy +++ b/game/scripts/characters/hermione/events/odd_jobs/panty_thief.rpy @@ -127,9 +127,11 @@ label hg_pr_panty_thief_e1: with d3 if hermione.is_worn("panties"): - $ hermione.strip("robe", "accessory") + $ hermione.strip("robe", "accessory", "bottom") + pause 0.5 $ hermione.strip("panties") nar "Suddenly Hermione bends forward and takes off her panties." + $ hermione.wear("robe", "accessory", "bottom") else: if hermione.is_any_worn("robe", "top", "bottom"): nar "Suddenly Hermione reaches inside one of her hidden pockets." @@ -157,9 +159,11 @@ label hg_pr_panty_thief_e1: with d3 if hermione.is_worn("panties"): - $ hermione.strip("robe", "accessory") + $ hermione.strip("robe", "accessory", "bottom") + pause 0.5 $ hermione.strip("panties") nar "Suddenly Hermione bends forward and takes off her panties." + $ hermione.wear("robe", "accessory", "bottom") else: if hermione.is_any_worn("robe", "top", "bottom"): nar "Suddenly Hermione reaches inside one of her hidden pockets." @@ -186,9 +190,11 @@ label hg_pr_panty_thief_e1: with d3 if hermione.is_worn("panties"): - $ hermione.strip("robe", "accessory") + $ hermione.strip("robe", "accessory", "bottom") + pause 0.5 $ hermione.strip("panties") nar "Suddenly Hermione bends forward and takes off her panties." + $ hermione.wear("robe", "accessory", "bottom") else: if hermione.is_any_worn("top", "bottom"): nar "Hermione pulls her panties out of her pocket." @@ -212,9 +218,11 @@ label hg_pr_panty_thief_e1: with d3 if hermione.is_worn("panties"): - $ hermione.strip("robe", "accessory") + $ hermione.strip("robe", "accessory", "bottom") + pause 0.5 $ hermione.strip("panties") nar "Hermione takes off her panties without hesitation." + $ hermione.wear("robe", "accessory", "bottom") else: if hermione.is_any_worn("top", "bottom"): nar "Suddenly Hermione reaches inside one of her hidden pockets."