Compare commits
No commits in common. "d119e71116121fdc945ce39709a29f9c9b78ac38" and "294cb2c5eea72ad399eee8fd90ed221402a8ec4b" have entirely different histories.
d119e71116
...
294cb2c5ee
@ -86,8 +86,7 @@ label day_start:
|
|||||||
|
|
||||||
# Randomisers
|
# Randomisers
|
||||||
random_gold = renpy.random.randint(8, 40)
|
random_gold = renpy.random.randint(8, 40)
|
||||||
map_randomobj.seed()
|
map_randomobj = renpy.random.Random()
|
||||||
door_randomobj.seed()
|
|
||||||
|
|
||||||
# Send salary every 7th day
|
# Send salary every 7th day
|
||||||
if game.day % 7 == 0:
|
if game.day % 7 == 0:
|
||||||
@ -195,8 +194,7 @@ label night_start:
|
|||||||
|
|
||||||
# Randomisers
|
# Randomisers
|
||||||
random_gold = renpy.random.randint(8, 40)
|
random_gold = renpy.random.randint(8, 40)
|
||||||
map_randomobj.seed()
|
map_randomobj = renpy.random.Random()
|
||||||
door_randomobj.seed()
|
|
||||||
|
|
||||||
# Update map locations
|
# Update map locations
|
||||||
call set_all_map_locations
|
call set_all_map_locations
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user