Fix kwarg calls

(cherry picked from commit 489f43cd0b)
This commit is contained in:
Gouvernathor 2024-03-26 19:53:28 +01:00 committed by LoafyLemon
parent cc6e76d154
commit 5659c4e4f4
2 changed files with 4 additions and 4 deletions

View File

@ -5,13 +5,13 @@ init python:
for c in states.dolls:
char = get_character_object(c)
body_default = get_character_body(c, type="default")
body_default = get_character_body(c, typ="default")
char.equip(body_default)
outfit_default = get_character_outfit(c, type="default")
outfit_default = get_character_outfit(c, typ="default")
char.equip(outfit_default)
outfit_last = outfit = get_character_outfit(c, type="last")
outfit_last = outfit = get_character_outfit(c, typ="last")
outfit_last.save()
char.set_face(mouth="base", eyes="base", eyebrows="base", pupils="mid", cheeks="none", tears="none")

View File

@ -238,7 +238,7 @@ screen wardrobe(xx, yy):
label wardrobe_menu():
$ renpy.dynamic(
char_active = get_character_object(states.active_girl),
char_outfit = get_character_outfit(states.active_girl, type="last"),
char_outfit = get_character_outfit(states.active_girl, typ="last"),
)
$ char_outfit.save()