From 0d35411afff236c8d6ea9d14add398e8d2ba8675 Mon Sep 17 00:00:00 2001 From: spinerak Date: Sat, 8 Jun 2024 01:38:31 +0200 Subject: [PATCH] small comment --- 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 4ed50e362c..d3119ddb19 100644 --- a/worlds/yachtdice/Rules.py +++ b/worlds/yachtdice/Rules.py @@ -214,7 +214,7 @@ def dice_simulation_strings(categories, num_dice, num_rolls, fixed_mult, step_mu # save result into the cache, then return it outcome = sum([percentile_distribution(total_dist, perc) for perc in perc_return]) / len(perc_return) - yachtdice_cache[tup] = max(5, math.floor(outcome)) + yachtdice_cache[tup] = max(5, math.floor(outcome)) # at least 5. return yachtdice_cache[tup]