Simple fix for GitLab issue #14: Behaviour of magic words changed
Say "Nothing happens" on "foo" not in Giant Room, rather than "What's the matter, can't you read? Now you'd best start over." which only makes sense there. It would be funnier to say something like "Well, that was remarkably pointless." Maybe later.
This commit is contained in:
parent
fd6da15373
commit
433e787de8
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ static int bigwords(token_t foo)
|
||||||
int k = VOCAB(foo, 3);
|
int k = VOCAB(foo, 3);
|
||||||
int spk = NOTHING_HAPPENS;
|
int spk = NOTHING_HAPPENS;
|
||||||
if (game.foobar != 1 - k) {
|
if (game.foobar != 1 - k) {
|
||||||
if (game.foobar != 0)spk = START_OVER;
|
if (game.foobar != 0 && game.loc == LOC_GIANTROOM)spk = START_OVER;
|
||||||
rspeak(spk);
|
rspeak(spk);
|
||||||
return GO_CLEAROBJ;
|
return GO_CLEAROBJ;
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue