Bug fixes

* Fixed outfit deletion tab not updating the list of items
* Fixed Tonks' public requests menu crashing due to an omitted result type
* Removed manual image rebuilding in wardrobe (superseded)
This commit is contained in:
LoafyLemon 2023-07-18 16:30:15 +01:00
parent ebc865b798
commit 962cc2f695
2 changed files with 2 additions and 5 deletions

View File

@ -126,7 +126,7 @@ label tonks_favor_menu:
$ result = show_events_menu(tonks_requests) $ result = show_events_menu(tonks_requests)
if result == "disabled": if result in ("disabled", "noncompliant"):
"You haven't unlocked this request opportunity yet." "You haven't unlocked this request opportunity yet."
jump .requests jump .requests
elif result == "exit": elif result == "exit":

View File

@ -446,6 +446,7 @@ label wardrobe_menu():
if _confirmed: if _confirmed:
_choice[1].delete() _choice[1].delete()
category_items = set_wardrobe_categories(current_category)
renpy.notify("Outfit Deleted.") renpy.notify("Outfit Deleted.")
elif _choice[0] == "export": elif _choice[0] == "export":
@ -595,14 +596,10 @@ label wardrobe_menu():
renpy.music.play(last_track) renpy.music.play(last_track)
DollThread.stop_all() DollThread.stop_all()
# set_wardrobe_categories.cache_clear()
char_active.build_image()
enable_game_menu() enable_game_menu()
renpy.return_statement() renpy.return_statement()
$ char_active.build_image()
jump .after_init jump .after_init
screen wardrobe_menu(xx, yy): screen wardrobe_menu(xx, yy):