From e941e8bdbf7f26f6bb7db270fd4c967e9f6f3799 Mon Sep 17 00:00:00 2001 From: MarioSpore Date: Mon, 18 Aug 2025 16:47:12 -0400 Subject: [PATCH] Fix issue with having more items than locations, the (-3) is a placeholder until we officially add in code that compensates the 3 added heart of stones --- worlds/grinch/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/grinch/__init__.py b/worlds/grinch/__init__.py index f22567be..05b0dfcb 100644 --- a/worlds/grinch/__init__.py +++ b/worlds/grinch/__init__.py @@ -56,7 +56,7 @@ 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)) + unfilled_locations: int = len(self.multiworld.get_unfilled_locations(self.player)) - len(ALL_ITEMS_TABLE.keys()) - 3 for _ in range(unfilled_locations): self_itempool.append(self.create_item((self.get_other_filler_item(list(MISC_ITEMS_TABLE.keys())))))