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())))))