From ade164add1208363f32bf49fd4ce79954f741e3b Mon Sep 17 00:00:00 2001 From: qwint Date: Tue, 4 Jun 2024 13:48:03 -0500 Subject: [PATCH] per extractedData pool_options, only 20 eggs are created by default, so if a random filler egg isn't generated 21 max egg costs can be unreachable could be updated when/if tuk check adds an egg to the pool --- worlds/hk/Options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/hk/Options.py b/worlds/hk/Options.py index f408528821cc..0ad1acff5df3 100644 --- a/worlds/hk/Options.py +++ b/worlds/hk/Options.py @@ -212,7 +212,7 @@ class MinimumEggPrice(Range): Only takes effect if the EggSlotShops option is greater than 0.""" display_name = "Minimum Egg Price" range_start = 1 - range_end = 21 + range_end = 20 default = 1