the-infocom-files / amfv

A Mind Forever Voyaging
5 stars 2 forks source link

Strange response to "ENTER object" if you are carrying it #48

Open eriktorbjorn opened 4 years ago

eriktorbjorn commented 4 years ago
>INVENTORY
You are carrying:
   a key
   a wallet

>ENTER KEY
You see nothing unusual about your head.

This is what V-THROUGH does:

          (<IN? ,PRSO ,WINNER>
           <PERFORM ,V?EXAMINE ,HEAD>
           <RTRUE>)

Now, it's probably meant to hit this case in V-EXAMINE:

           (<PRSO? ;,EYES ;,TEETH ,HEAD ;,EARS>
        <TELL "That would involve quite a contortion." CR>)

But HEAD has MYBIT, so it instead enters this case:

           (<OR <FSET? ,PRSO ,ACTORBIT>
            <FSET? ,PRSO ,MYBIT>>
        <TELL "You see nothing unusual about">
        <ARTICLE ,PRSO T>
        <TELL "." CR>)