Skip to content

Commit 0bece94

Browse files
Jouramielallaria
authored andcommitted
Stardew Valley: Fix potential incompletable seed when starting winter (ArchipelagoMW#4361)
* make moss available with any season except winter * add tool and region requirement for moss
1 parent 184ef83 commit 0bece94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

worlds/stardew_valley/logic/logic.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ def __init__(self, player: int, options: StardewValleyOptions, content: StardewC
281281
Material.coal: self.mine.can_mine_in_the_mines_floor_41_80() | self.tool.has_tool(Tool.pan),
282282
Material.fiber: True_(),
283283
Material.hardwood: self.tool.has_tool(Tool.axe, ToolMaterial.copper) & (self.region.can_reach(Region.secret_woods) | self.region.can_reach(Region.island_west)),
284-
Material.moss: True_(),
284+
Material.moss: self.season.has_any_not_winter() & (self.tool.has_tool(Tool.scythe) | self.combat.has_any_weapon) & self.region.can_reach(Region.forest),
285285
Material.sap: self.ability.can_chop_trees(),
286286
Material.stone: self.tool.has_tool(Tool.pickaxe),
287287
Material.wood: self.tool.has_tool(Tool.axe),

0 commit comments

Comments
 (0)