summaryrefslogtreecommitdiff
path: root/demo.stage
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2015-05-07 15:23:03 -0600
committerMike Buland <eichlan@xagasoft.com>2015-05-07 15:23:03 -0600
commit0655735c84f412b7ad3e65381dc24694a9ac8071 (patch)
tree42baeb025d0e2842fe0aad9b7e75da81db5e24ed /demo.stage
parent75b3ad661c2d6ed382620a25613846c2b2b10f46 (diff)
downloadstage-main.tar.gz
stage-main.tar.bz2
stage-main.tar.xz
stage-main.zip
Goto was confused.HEADmain
The variable was being reset, then used by reference as the next destination. Confusing to debug.
Diffstat (limited to 'demo.stage')
-rw-r--r--demo.stage2
1 files changed, 1 insertions, 1 deletions
diff --git a/demo.stage b/demo.stage
index 5a3fe2e..2b04bd4 100644
--- a/demo.stage
+++ b/demo.stage
@@ -91,11 +91,11 @@ situation <<start>>
91 You don't seem to have anything with you but the clothes you're 91 You don't seem to have anything with you but the clothes you're
92 wearing. (You also posses an eerily accurate innate sense of 92 wearing. (You also posses an eerily accurate innate sense of
93 direction.)'''); 93 direction.)''');
94 goto( <<beachEast>> );
95 } 94 }
96 95
97 enter 96 enter
98 { 97 {
98 goto( <<beachEast>> );
99 } 99 }
100} 100}
101 101