From 8975a0c0b48f2a421b3b099eec52f796f2fe6718 Mon Sep 17 00:00:00 2001 From: gaithern Date: Sat, 18 May 2024 15:54:31 -0500 Subject: [PATCH] Update __init__.py --- worlds/kh1/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/worlds/kh1/__init__.py b/worlds/kh1/__init__.py index 03755fdc370c..5ea98fadcd1a 100644 --- a/worlds/kh1/__init__.py +++ b/worlds/kh1/__init__.py @@ -119,6 +119,9 @@ def create_items(self): item_pool += [self.create_item("Ansem's Report " + str(i+1))] i = i + 1 + while len(item_pool) > total_locations: + item_pool.pop(0) + print("KH1: Item Pool = " + str(len(item_pool))) print("KH1: Locations = " + str(total_locations)) print("KH1: Level Up Item Pool = " + str(len(level_up_item_pool)))