From 42e9af239dd2bed882a84587dd1796246193e173 Mon Sep 17 00:00:00 2001 From: spinerak Date: Tue, 11 Jun 2024 20:41:15 +0200 Subject: [PATCH] Removed sorted from category list --- worlds/yachtdice/Rules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/yachtdice/Rules.py b/worlds/yachtdice/Rules.py index 00393a5e12..1eb7487254 100644 --- a/worlds/yachtdice/Rules.py +++ b/worlds/yachtdice/Rules.py @@ -125,7 +125,7 @@ def dice_simulation_strings(categories, num_dice, num_rolls, fixed_mult, step_mu Function that returns the feasible score in logic based on items obtained. """ tup = ( - tuple(sorted([c.name + str(c.quantity) for c in categories])), + tuple([c.name + str(c.quantity) for c in categories]), num_dice, num_rolls, fixed_mult,