From 798c590db1b199cee6d94d207c4dd438fb00aa3f Mon Sep 17 00:00:00 2001 From: LoafyLemon Date: Tue, 11 Apr 2023 21:47:20 +0100 Subject: [PATCH] Bug fix * Fixed wrong character reference --- game/scripts/characters/tonks/talk.rpy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/game/scripts/characters/tonks/talk.rpy b/game/scripts/characters/tonks/talk.rpy index 20bdd0f4..c568067c 100644 --- a/game/scripts/characters/tonks/talk.rpy +++ b/game/scripts/characters/tonks/talk.rpy @@ -20,7 +20,7 @@ label tonks_talk: jump tonks_talk - "-Get naked!-" if states.her.ev.random_strip.complete and tonks.is_any_worn("top", "bottom", "robe"): + "-Get naked!-" if states.ton.ev.random_strip.complete and tonks.is_any_worn("top", "bottom", "robe"): gen "Get naked, [name_tonks_genie]!" ("base", xpos="far_left", ypos="head") ton "Of course, [name_genie_tonks]." ("horny", "base", "base", "mid") hide tonks_main @@ -37,7 +37,7 @@ label tonks_talk: ton "I like the way you think, [name_genie_tonks]!" ("horny", "base", "base", "mid") jump tonks_talk - "-Get dressed-" if states.her.ev.random_strip.complete and not tonks.is_any_worn("top", "bottom", "robe"): + "-Get dressed-" if states.ton.ev.random_strip.complete and not tonks.is_any_worn("top", "bottom", "robe"): gen "Put on some clothes, would you..." ("base", xpos="far_left", ypos="head") gen "This is a school, after all." ("base", xpos="far_left", ypos="head") ton "Do I have to?" ("annoyed", "narrow", "base", "mid")