1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Fix undumping of random states

This commit is contained in:
Joe R 2025-01-04 12:55:38 -05:00
parent 2c69371265
commit 4c031b9686

View file

@ -3368,7 +3368,7 @@ class Game(object):
state = pload() state = pload()
if (game.random is not None and if (game.random is not None and
not isinstance(game.random, random.Random) and not isinstance(game.random, random.Random) and
isinstance(state, int)): isinstance(state, tuple)):
game.random.setstate(state) game.random.setstate(state)
# if not hasattr(game.random, "origin"): # if not hasattr(game.random, "origin"):
# game.random.origin = game.random.ORIGIN_UNKNOWN # game.random.origin = game.random.ORIGIN_UNKNOWN