From b54a65a7eeb2b3acb91713ededfe11021ca9034e Mon Sep 17 00:00:00 2001 From: LoafyLemon Date: Sat, 30 Mar 2024 19:47:54 +0000 Subject: [PATCH] Bug fix * Fixed imported outfits not appearing in the list, until the category of the wardrobe is changed. --- game/scripts/wardrobe/wardrobe.rpy | 1 + 1 file changed, 1 insertion(+) diff --git a/game/scripts/wardrobe/wardrobe.rpy b/game/scripts/wardrobe/wardrobe.rpy index 3cc0a1b8..5754d2d9 100644 --- a/game/scripts/wardrobe/wardrobe.rpy +++ b/game/scripts/wardrobe/wardrobe.rpy @@ -473,6 +473,7 @@ label wardrobe_menu(): elif __choice[0] == "import": $ _outfit = char_active.import_outfit(__choice[1]) + $ category_items = set_wardrobe_categories(current_category) elif __choice[0] == "schedule": $ renpy.call_screen("wardrobe_schedule_menuitem", __choice[1])