diff --git a/game/scripts/doll/clothes.rpy b/game/scripts/doll/clothes.rpy index 426a8bf9..ae9e6cb6 100644 --- a/game/scripts/doll/clothes.rpy +++ b/game/scripts/doll/clothes.rpy @@ -1,5 +1,5 @@ init python: - class DollCloth(DollMethods): + class DollCloth(DollMethods, SlottedNoRollback): layer_types = { "mask": "-1", "skin": 10, diff --git a/game/scripts/doll/outfits.rpy b/game/scripts/doll/outfits.rpy index 5f6bd7d4..ec85c1eb 100644 --- a/game/scripts/doll/outfits.rpy +++ b/game/scripts/doll/outfits.rpy @@ -1,5 +1,5 @@ init python: - class DollOutfit(DollMethods): + class DollOutfit(DollMethods, SlottedNoRollback): default_schedule = {"day": False, "night": False, "cloudy": False, "rainy": False, "snowy": False} def __init__(self, group, unlocked=False, name="", desc="", price=0, temp=False, schedule={}, hidden=False, addons=[]):