From dc96c53a95bacde8b761307c77be4bc80268cbf1 Mon Sep 17 00:00:00 2001 From: aerinon Date: Mon, 21 Aug 2023 08:25:17 -0600 Subject: [PATCH] Fix for Ganonhunt and various algorithms --- source/item/FillUtil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/item/FillUtil.py b/source/item/FillUtil.py index 595e86c9..8b5225b0 100644 --- a/source/item/FillUtil.py +++ b/source/item/FillUtil.py @@ -357,7 +357,7 @@ def determine_major_items(world, player): major_item_set.add('Single Arrow') if world.keyshuffle[player] == 'universal': major_item_set.add('Small Key (Universal)') - if world.goal[player] == 'triforcehunt': + if world.goal[player] in {'triforcehunt', 'ganonhunt'}: major_item_set.add('Triforce Piece') if world.bombbag[player]: major_item_set.add('Bomb Upgrade (+10)')