Stardew Valley: Remove Rarecrow Locations from Night Market when Museumsanity is Disabled (#5146)

This commit is contained in:
Jérémie Bolduc
2025-07-12 07:12:04 -04:00
committed by GitHub
parent a79423534c
commit 909565e5d9
3 changed files with 51 additions and 10 deletions

View File

@@ -279,6 +279,9 @@ def extend_festival_locations(randomized_locations: List[LocationData], options:
return
festival_locations = locations_by_tag[LocationTags.FESTIVAL]
if not options.museumsanity:
festival_locations = [location for location in festival_locations if location.name not in ("Rarecrow #7 (Tanuki)", "Rarecrow #8 (Tribal Mask)")]
randomized_locations.extend(festival_locations)
extend_hard_festival_locations(randomized_locations, options)
extend_desert_festival_chef_locations(randomized_locations, options, random)