Stardew Valley: Fix typo with woods obelisk item (#2015)

Co-authored-by: Witchybun <elnendil@gmail.com>
This commit is contained in:
Witchybun
2023-07-22 23:23:03 -05:00
committed by GitHub
parent e1374492de
commit 591661ca79
3 changed files with 3 additions and 3 deletions

View File

@@ -26,7 +26,7 @@ def can_reach_woods_depth(vanilla_logic, depth: int) -> StardewRule:
def has_woods_rune_to_depth(vanilla_logic, floor: int) -> StardewRule:
if vanilla_logic.options[options.ElevatorProgression] == options.ElevatorProgression.option_vanilla:
return True_()
return vanilla_logic.received("Progressive Wood Obelisk Sigils", count=int(floor / 10))
return vanilla_logic.received("Progressive Woods Obelisk Sigils", count=int(floor / 10))
def can_chop_to_depth(vanilla_logic, floor: int) -> StardewRule: