mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-03-23 14:03:22 -07:00
return arguments instead of making a list (will 🐶 later)
This commit is contained in:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user