Constant MANUAL_PRONOUNS;
Include "parser";
Include "verblib";
Object room1 "Somewhere"
with
description "Here !",
has light;
Object box "box" room1
with
name 'box'
has container open;
Object apple "apple" room1
with
name 'apple';
[ Initialise;
location = room1;
];
Include "grammar";
Quote:
Release 1 / Serial number 180222 / Inform v6.34 Library v6.12.2-pre
Somewhere
Here !
You can see a box (which is empty) and an apple here.
>insert it into box
You can't see any such thing.
>x apple
You see nothing special about the apple.
>insert it into box
(first taking the apple)
You put the apple into the box.
>
"You can't see any such thing." instead "I'm not sure what \~it\~ refers to."
Quote:
english.h
Miscellany:
30: CSubjectCant(actor,true); " see any such thing.";
35: "I'm not sure what ~", (address) x1, "~ refers to.";
Reported at https://www.intfiction.org/forum/viewtopic.php?f=7&t=15730&start=140#p140002
Code:
Quote:
"You can't see any such thing." instead "I'm not sure what \~it\~ refers to."
Quote: