From a5ab152c2b81eae696bc624563023850ab88be77 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Tue, 23 Mar 2021 08:57:04 +0100 Subject: [PATCH] implement cursed --- worlds/hk/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/worlds/hk/__init__.py b/worlds/hk/__init__.py index c06ff2a4..3f76be63 100644 --- a/worlds/hk/__init__.py +++ b/worlds/hk/__init__.py @@ -86,9 +86,9 @@ def gen_items(world: MultiWorld, player: int): world.push_precollected(item) elif item_data.type == "Cursed": if world.CURSED[player]: - raise Exception("Cursed is not implemented yet.") - # implement toss_junk for HK first + pool.append(item) else: + # fill Focus Location with Focus and add it to start inventory as well. event_location = world.get_location(item_name, player) world.push_item(event_location, item) event_location.event = True