From ece26900306e671ca739cbc889d44767e7003c45 Mon Sep 17 00:00:00 2001 From: LoafyLemon Date: Sat, 15 Jul 2023 18:14:02 +0100 Subject: [PATCH] Bug fix * Fixed clothing blacklists affecting all multislots instead of the specified multislot --- game/scripts/doll/main.rpy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/scripts/doll/main.rpy b/game/scripts/doll/main.rpy index 36d55be5..5bda4655 100644 --- a/game/scripts/doll/main.rpy +++ b/game/scripts/doll/main.rpy @@ -247,7 +247,7 @@ init python: if slot in self.multislots: for k, v in self.states.items(): - if any((x in k) for x in self.multislots): + if v[0] and v[0].type == slot: v[0], v[2] = None, True else: self.states[slot][0], self.states[slot][2] = None, True