From 59e8f30d52ab16f7d0e6dfb21dbfaa9a30b9d527 Mon Sep 17 00:00:00 2001 From: spinerak Date: Fri, 24 May 2024 20:34:54 +0200 Subject: [PATCH] Now you can have 0 extra fragments --- worlds/yachtdice/Options.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/worlds/yachtdice/Options.py b/worlds/yachtdice/Options.py index 65b8d49783..c1c2c31110 100644 --- a/worlds/yachtdice/Options.py +++ b/worlds/yachtdice/Options.py @@ -57,7 +57,7 @@ class numberExtraDiceFragments(Range): The option will never give an extra full dice, but makes it easier to collect all dice. """ display_name = "Number of extra dice fragments in the pool" - range_start = 1 + range_start = 0 range_end = 4 default = 3 @@ -71,7 +71,7 @@ class numberExtraRollFragments(Range): The option will never give an extra full roll, but makes it easier to collect all roll. """ display_name = "Number of extra roll fragments in the pool" - range_start = 1 + range_start = 0 range_end = 4 default = 3