Skip to content

Commit

Permalink
- Removed year2 rule on seeds, for now
Browse files Browse the repository at this point in the history
  • Loading branch information
agilbert1412 committed Feb 26, 2023
1 parent e3c51dc commit 95ae3fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions worlds/stardew_valley/logic.py
Original file line number Diff line number Diff line change
Expand Up @@ -647,8 +647,8 @@ def can_buy_seed(self, seed: SeedData):
item_rule = self.received(seed.name)
season_rule = self.received(seed.seasons)
region_rule = self.can_reach_any_region(seed.regions)
year_rule = self.has_year_two() if seed.year == 2 else True_()
return season_rule & region_rule & year_rule & item_rule
# year_rule = self.has_year_two() if seed.year == 2 else True_()
return season_rule & region_rule & item_rule # & year_rule

def can_grow_crop(self, crop: CropData):
season_rule = self.received(crop.farm_growth_seasons)
Expand Down

0 comments on commit 95ae3fb

Please sign in to comment.