Skip to content

Commit

Permalink
th happened here
Browse files Browse the repository at this point in the history
  • Loading branch information
Jouramie committed Dec 8, 2024
1 parent 2f62c57 commit 8e55c79
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions worlds/stardew_valley/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,7 @@ def precollect_starting_season(self):
if self.options.season_randomization == SeasonRandomization.option_randomized_not_winter:
season_pool = [season for season in season_pool if season.name != "Winter"]

item1 = self.random.choice(season_pool)
starting_season = self.create_item(item1)
starting_season = self.create_item(self.random.choice(season_pool))
self.multiworld.push_precollected(starting_season)

def precollect_farm_type_items(self):
Expand Down

0 comments on commit 8e55c79

Please sign in to comment.