Skip to content

Commit

Permalink
Merge 'Fix missing randomized data in spoilers' (#2256)
Browse files Browse the repository at this point in the history
  • Loading branch information
fenhl committed Aug 21, 2024
2 parents 67acd9e + d3a0af8 commit 518a871
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ issue. You should always Hard Reset to avoid this issue entirely.
* Fix some inconsistent tags for wonderitem locations in the `Exclude Locations` list.
* Fix swapped `Hideout Kitchen Wonderitem` and `Hideout Kitchen Stove Wonderitem` locations.
* Fix a bug where a foolish hint could be generated for an area despite not having any shuffled item locations.
* Fix a bug where spoiler logs' `randomized_settings` fields could be incomplete.

#### New Speedups
* Meg will now take less time before respawning after getting hurt.
Expand Down
2 changes: 1 addition & 1 deletion World.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def __init__(self, world_id: int, settings: Settings, resolve_randomized_setting

self.parser: Rule_AST_Transformer = Rule_AST_Transformer(self)
self.event_items: set[str] = set()
self.settings: Settings = settings
self.settings: Settings = settings.copy()
self.distribution: WorldDistribution = settings.distribution.world_dists[world_id]

# rename a few attributes...
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '8.1.75'
__version__ = '8.1.76'

# This is a supplemental version number for branches based off of main dev.
supplementary_version = 0
Expand Down

0 comments on commit 518a871

Please sign in to comment.