Skip to content

Commit

Permalink
CV64: Remove multiworld random usage #4156
Browse files Browse the repository at this point in the history
  • Loading branch information
LiquidCat64 authored Nov 8, 2024
1 parent f407283 commit aae8b16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/cv64/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class CV64World(World):

def generate_early(self) -> None:
# Generate the player's unique authentication
self.auth = bytearray(self.multiworld.random.getrandbits(8) for _ in range(16))
self.auth = bytearray(self.random.getrandbits(8) for _ in range(16))

self.total_s1s = self.options.total_special1s.value
self.s1s_per_warp = self.options.special1s_per_warp.value
Expand Down

0 comments on commit aae8b16

Please sign in to comment.