return arguments instead of making a list (will 🐶 later)

This commit is contained in:
spinerak
2024-06-10 18:56:46 +02:00
parent 93812bb629
commit 03ba657f4f

View File

@@ -110,14 +110,8 @@ def extract_progression(state, player, options):
extra_points_in_logic += state.count("10 Points", player) * 10
extra_points_in_logic += state.count("100 Points", player) * 100
return [
categories,
number_of_dice,
number_of_rerolls,
number_of_fixed_mults * 0.1,
number_of_step_mults * 0.01,
extra_points_in_logic,
]
return categories, number_of_dice, number_of_rerolls, number_of_fixed_mults * 0.1, number_of_step_mults * 0.01, extra_points_in_logic,
# We will store the results of this function as it is called often for the same parameters.