Skip to content

Commit

Permalink
Was using the wrong random, but no longer
Browse files Browse the repository at this point in the history
  • Loading branch information
Rosalie-A committed Dec 17, 2024
1 parent 5f8a970 commit 2040743
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions worlds/ff4fe/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,8 @@ def create_items(self) -> None:

restricted_character_allow_locations = list(set(character_locations) - set(locations.restricted_character_locations)).copy()
restricted_character_forbid_locations = list(set(character_locations) - set(restricted_character_allow_locations)).copy()
self.multiworld.random.shuffle(restricted_character_allow_locations)
self.multiworld.random.shuffle(restricted_character_forbid_locations)
self.random.shuffle(restricted_character_allow_locations)
self.random.shuffle(restricted_character_forbid_locations)

for item in map(self.create_item, item_pool):
# If we've specifically chosen a startinc character, we place them directly even though we're not normally
Expand Down

0 comments on commit 2040743

Please sign in to comment.