Files
Archipelago/worlds
Mysteryem 3016379b85 KH2: Fix nondeterministic generation when CasualBounties is enabled (#5967)
When CasualBounties was enabled, the location names in
`exclusion_table["HitlistCasual"]` would be iterated into
`self.random_super_boss_list` in `generate_early`, but
`exclusion_table["HitlistCasual"]` was a `set`, so its iteration order
would vary on each generation, even with same seed.

Random location names would be picked from `self.random_super_boss_list`
to place Bounty items at, so different locations could be picked on each
generation with the same seed.

`exclusion_table["Hitlist"]` is similar and was already a `list`,
avoiding the issue of nondeterministic iteration order, so
`exclusion_table["HitlistCasual"]` has been changed to a `list` to
match.
2026-03-10 23:06:44 +01:00
..
2026-03-10 20:04:27 +01:00
2026-03-08 21:31:04 +01:00
2025-09-05 16:22:11 +02:00
2025-12-22 04:08:52 +01:00
2026-01-19 20:11:31 +01:00
2025-11-11 18:16:38 +00:00
2026-03-10 20:04:27 +01:00