[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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

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)