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:
parent
2c69371265
commit
4c031b9686
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue