From 3bbffa1310c40ad886ad534875579cc17715cce7 Mon Sep 17 00:00:00 2001 From: MarioSpore Date: Thu, 13 Nov 2025 23:07:32 -0500 Subject: [PATCH] Merged change from dev --- worlds/grinch/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/worlds/grinch/__init__.py b/worlds/grinch/__init__.py index f32de370..96f6c5f5 100644 --- a/worlds/grinch/__init__.py +++ b/worlds/grinch/__init__.py @@ -61,7 +61,9 @@ class GrinchWorld(World): self_itempool.append(self.create_item(item)) #Get number of current unfilled locations - unfilled_locations: int = len(self.multiworld.get_unfilled_locations(self.player)) - len(ALL_ITEMS_TABLE.keys()) - 3 + unfilled_locations: int = ( + len(self.multiworld.get_unfilled_locations(self.player)) - len(self_itempool) + ) # Total available weight sum total_fillerweights = sum(self.options.filler_weight[filler] for filler in MISC_ITEMS_TABLE)