From e2b942139a5ed1908725812edd52aa479a5d835b Mon Sep 17 00:00:00 2001 From: qwint Date: Mon, 20 Jan 2025 13:10:29 -0500 Subject: [PATCH] HK: Save GrubHuntGoal by value (#4521) --- worlds/hk/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/hk/__init__.py b/worlds/hk/__init__.py index 7e9b7442..daf177fb 100644 --- a/worlds/hk/__init__.py +++ b/worlds/hk/__init__.py @@ -209,7 +209,7 @@ class HKWorld(World): # defaulting so completion condition isn't incorrect before pre_fill self.grub_count = ( 46 if options.GrubHuntGoal == GrubHuntGoal.special_range_names["all"] - else options.GrubHuntGoal + else options.GrubHuntGoal.value ) self.grub_player_count = {self.player: self.grub_count}