Skip to content

Commit

Permalink
Update to go to barren patch
Browse files Browse the repository at this point in the history
  • Loading branch information
ramdesh authored Oct 4, 2023
1 parent 0c79f0e commit 955e632
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/commonMain/kotlin/resources/storyEvents/Tutorial.kt
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@ class Tutorial : StoryEventResource {
)
),

StoryEvent("Tutorial", 90, "I should travel to Barren Field.",
StoryEvent("Tutorial", 90, "I should travel to Barren Patch.",
ConditionalEvents(InteractEvent::class,
{ event, _ -> event.creature.isPlayer() && event.interactionTarget.name == "Apple Pie Recipe" },
{ event, _ -> listOfNotNull(eventWithPlayer(event.creature) { MessageEvent(it, "Once I'm done here I should travel to Barren Field.") }) }
{ event, _ -> listOfNotNull(eventWithPlayer(event.creature) { MessageEvent(it, "Once I'm done here I should travel to Barren Patch.") }) }
)
),

Expand All @@ -99,4 +99,4 @@ class Tutorial : StoryEventResource {

)

}
}

0 comments on commit 955e632

Please sign in to comment.