diff options
author | Mike Buland <eichlan@xagasoft.com> | 2015-05-07 15:23:03 -0600 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2015-05-07 15:23:03 -0600 |
commit | 0655735c84f412b7ad3e65381dc24694a9ac8071 (patch) | |
tree | 42baeb025d0e2842fe0aad9b7e75da81db5e24ed /demo.stage | |
parent | 75b3ad661c2d6ed382620a25613846c2b2b10f46 (diff) | |
download | stage-main.tar.gz stage-main.tar.bz2 stage-main.tar.xz stage-main.zip |
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.stage | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 | ||