forked from SilverStudioGames/WTS
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:
parent
5a0f55cc08
commit
c536626a0b
@ -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":
|
||||||
|
@ -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):
|
||||||
|
Loading…
Reference in New Issue
Block a user