CV64: Remove multiworld random usage #4156
This commit is contained in:
parent
f4072833f3
commit
aae8b16073
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue