[SDV] Added a missing logic rule for talking to Leo (#2129)
This commit is contained in:
parent
9ad0032eb4
commit
21baa302d4
|
@ -1095,6 +1095,8 @@ class StardewLogic:
|
||||||
rules = [self.can_reach_any_region(villager.locations)]
|
rules = [self.can_reach_any_region(villager.locations)]
|
||||||
if npc == NPC.kent:
|
if npc == NPC.kent:
|
||||||
rules.append(self.has_year_two())
|
rules.append(self.has_year_two())
|
||||||
|
elif npc == NPC.leo:
|
||||||
|
rules.append(self.received("Island West Turtle"))
|
||||||
|
|
||||||
return And(rules)
|
return And(rules)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue