CV64: Remove multiworld random usage #4156

This commit is contained in:
LiquidCat64 2024-11-08 12:57:44 -05:00 committed by GitHub
parent f4072833f3
commit aae8b16073
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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