skip unnecessary lambda

This commit is contained in:
Gouvernathor 2023-11-14 22:54:02 +01:00
parent f93f50e9ac
commit 94a6f9302b
1 changed files with 3 additions and 3 deletions

View File

@ -9,9 +9,9 @@ init python:
elif current_sorting == "Price (Desc)":
item = sorted(item, key=lambda x: x.price, reverse=True)
if sortby == "Lewdness (Asc)":
item = sorted(item, key=lambda x: get_outfit_score(x), reverse=False)
item = sorted(item, key=get_outfit_score, reverse=False)
elif current_sorting == "Lewdness (Desc)":
item = sorted(item, key=lambda x: get_outfit_score(x), reverse=True)
item = sorted(item, key=get_outfit_score, reverse=True)
return item
label shop_dress:
@ -112,7 +112,7 @@ label shop_dress_menu:
$ curry = renpy.curry(execute_callbacks)(parcel_callbacks) if parcel_callbacks else None
$ parcel_callbacks = []
$ Parcel(contents=[(k, 1) for k in store_cart], wait=transit_time, func=curry).send()
return
else:
gen "Nothing has caught my eye I'm afraid." ("base", xpos="far_left", ypos="head")