From 5d53a9f8da646d5803e1c46ba354481d3978cdb7 Mon Sep 17 00:00:00 2001 From: Alex Gilbert Date: Sun, 28 Jan 2024 23:30:23 -0500 Subject: [PATCH] - Fixed bad get_seed() --- worlds/stardew_valley/options.py | 12 ++++++------ .../stardew_valley/test/stability/TestStability.py | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/worlds/stardew_valley/options.py b/worlds/stardew_valley/options.py index 07e7ca3fa2b4..02240a3d59ac 100644 --- a/worlds/stardew_valley/options.py +++ b/worlds/stardew_valley/options.py @@ -7,12 +7,12 @@ class Goal(Choice): """What's your goal with this play-through? - Community Center: Complete the Community Center. - Grandpa's Evaluation: Succeed Grandpa's evaluation with 4 lit candles. - Bottom of the Mines: Reach level 120 in the mineshaft. - Cryptic Note: Complete the quest "Cryptic Note" where Mr Qi asks you to reach floor 100 in the Skull Cavern. - Master Angler: Catch every fish in the game. Pairs well with Fishsanity. - Complete Collection: Complete the museum by donating every possible item. Pairs well with Museumsanity. + Community Center: Complete the Community Center + Grandpa's Evaluation: Succeed Grandpa's evaluation with 4 lit candles + Bottom of the Mines: Reach level 120 in the mineshaft + Cryptic Note: Complete the quest "Cryptic Note" where Mr Qi asks you to reach floor 100 in the Skull Cavern + Master Angler: Catch every fish in the game. Pairs well with Fishsanity + Complete Collection: Complete the museum by donating every possible item. Pairs well with Museumsanity Full House: Get married and have two children. Pairs well with Friendsanity. Greatest Walnut Hunter: Find all 130 Golden Walnuts Protector of the Valley: Complete all the monster slayer goals. Pairs well with Monstersanity diff --git a/worlds/stardew_valley/test/stability/TestStability.py b/worlds/stardew_valley/test/stability/TestStability.py index 978b58a117ae..32543b50b4d6 100644 --- a/worlds/stardew_valley/test/stability/TestStability.py +++ b/worlds/stardew_valley/test/stability/TestStability.py @@ -19,7 +19,7 @@ class TestGenerationIsStable(unittest.TestCase): def test_all_locations_and_items_are_the_same_between_two_generations(self): # seed = get_seed(33778671150797368040) # troubleshooting seed - seed = random.randrange(sys.maxsize) + seed = get_seed() output_a = subprocess.check_output([sys.executable, '-m', 'worlds.stardew_valley.test.stability.StabilityOutputScript', '--seed', str(seed)]) output_b = subprocess.check_output([sys.executable, '-m', 'worlds.stardew_valley.test.stability.StabilityOutputScript', '--seed', str(seed)])