mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 12:11:33 -06:00
Hollow Knight: Explicitly Exclude Palace Items as Filler (#5119)
This commit is contained in:
@@ -218,6 +218,11 @@ class HKWorld(World):
|
||||
wp = self.options.WhitePalace
|
||||
if wp <= WhitePalace.option_nopathofpain:
|
||||
exclusions.update(path_of_pain_locations)
|
||||
exclusions.update((
|
||||
"Soul_Totem-Path_of_Pain",
|
||||
"Lore_Tablet-Path_of_Pain_Entrance",
|
||||
"Journal_Entry-Seal_of_Binding",
|
||||
))
|
||||
if wp <= WhitePalace.option_kingfragment:
|
||||
exclusions.update(white_palace_checks)
|
||||
if wp == WhitePalace.option_exclude:
|
||||
@@ -226,6 +231,9 @@ class HKWorld(World):
|
||||
# If charms are randomized, this will be junk-filled -- so transitions and events are not progression
|
||||
exclusions.update(white_palace_transitions)
|
||||
exclusions.update(white_palace_events)
|
||||
exclusions.update(item_name_groups["PalaceJournal"])
|
||||
exclusions.update(item_name_groups["PalaceLore"])
|
||||
exclusions.update(item_name_groups["PalaceTotem"])
|
||||
return exclusions
|
||||
|
||||
def create_regions(self):
|
||||
|
Reference in New Issue
Block a user