summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2020-08-15 14:19:33 +0200
committerNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2020-08-15 14:19:33 +0200
commit9db1108195fe6c2572005c3eb338c14b445fee3b (patch)
treebc694b2ae5d4b0e92172921619c7faa44394c31e
parent6655cdcd1c28ac36c8af144573c396d96b9dceee (diff)
Updates sample.
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index b2b2a76..381d544 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,7 @@ your stories using a feature rich language without having to worry about the
implications when it comes time to add support for it to your engine.
### Sample:
- (define_sequence in_your_room
+ (define_sequence in_your_room ()
(ifelse
(is_member visited_your_room progress)
(text_effect narrator
@@ -32,11 +32,11 @@ implications when it comes time to add support for it to your engine.
(player_choice
(
( Look for healing items )
- (sequence look_for_healing_items)
+ (jump_to look_for_healing_items)
)
(
( No time! Let's go adventuring! )
- (sequence leave_your_room)
+ (jump_to leave_your_room)
)
)
)