[SDV] Added a missing logic rule for talking to Leo (#2129)

This commit is contained in:
agilbert1412
2023-08-28 18:55:13 -04:00
committed by GitHub
parent 9ad0032eb4
commit 21baa302d4

View File

@@ -1095,6 +1095,8 @@ class StardewLogic:
rules = [self.can_reach_any_region(villager.locations)]
if npc == NPC.kent:
rules.append(self.has_year_two())
elif npc == NPC.leo:
rules.append(self.received("Island West Turtle"))
return And(rules)