Fix handling of intransitive "say".
This commit is contained in:
parent
6c6498b797
commit
7c9a0bfb36
3 changed files with 4 additions and 4 deletions
|
@ -1051,7 +1051,7 @@ int action(FILE *input, enum speechpart part, long verb, token_t obj)
|
|||
case intransitive:
|
||||
if (WD2 > 0 && verb != SAY) return(2800);
|
||||
if (verb == SAY)obj=WD2;
|
||||
if (obj == 0) {
|
||||
if (obj == 0 || obj == INTRANSITIVE) {
|
||||
/* Analyse an intransitive verb (ie, no object given yet). */
|
||||
switch (verb-1) {
|
||||
case 0: /* CARRY */ return carry(verb, INTRANSITIVE);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue