From 102c1fecb6d65663bc1014ec7bd73160018258f9 Mon Sep 17 00:00:00 2001 From: black-sliver <59490463+black-sliver@users.noreply.github.com> Date: Sat, 22 Jan 2022 01:50:48 +0100 Subject: [PATCH] SoE: allow start_inventory --- worlds/soe/__init__.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/worlds/soe/__init__.py b/worlds/soe/__init__.py index 7c6b0bbb..8ff51a2a 100644 --- a/worlds/soe/__init__.py +++ b/worlds/soe/__init__.py @@ -134,9 +134,6 @@ class SoEWorld(World): self.world.get_entrance('New Game', self.player).connect(self.world.get_region('Ingame', self.player)) def create_items(self): - # clear precollected items since we don't support them yet - if type(self.world.precollected_items) is dict: - self.world.precollected_items[self.player] = [] # add items to the pool self.world.itempool += list(map(lambda item: self.create_item(item), _items))