diff --git a/src/commonMain/kotlin/resources/storyEvents/Tutorial.kt b/src/commonMain/kotlin/resources/storyEvents/Tutorial.kt index dde9183c..0d4a437e 100644 --- a/src/commonMain/kotlin/resources/storyEvents/Tutorial.kt +++ b/src/commonMain/kotlin/resources/storyEvents/Tutorial.kt @@ -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.") }) } ) ), @@ -99,4 +99,4 @@ class Tutorial : StoryEventResource { ) -} \ No newline at end of file +}