Merged change from dev

This commit is contained in:
MarioSpore
2025-11-13 23:07:32 -05:00
parent 9f41615e38
commit 3bbffa1310

View File

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