Skip to content

Commit

Permalink
Merge branch 'fix_missing_randomized_settings_spoiler_fields' into de…
Browse files Browse the repository at this point in the history
…v-fenhl
  • Loading branch information
fenhl committed Aug 21, 2024
2 parents a4c816a + d3a0af8 commit 88a7a62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion World.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,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,7 +1,7 @@
__version__ = '8.1.73'

# This is a supplemental version number for branches based off of main dev.
supplementary_version = 1
supplementary_version = 2

# Pick a unique identifier byte for your fork if you are intending to have a long-lasting branch.
# This will be 0x00 for main releases and 0x01 for main dev.
Expand Down

0 comments on commit 88a7a62

Please sign in to comment.