Skip to content

Commit

Permalink
Merge pull request #26 from ramdesh/tutorial-fix
Browse files Browse the repository at this point in the history
Update tutorial step to go to barren patch instead of barren field
  • Loading branch information
ManApart authored Dec 21, 2024
2 parents e975223 + 955e632 commit 3542705
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 3542705

Please sign in to comment.