the-infocom-files / sorcerer

Sorcerer
3 stars 3 forks source link

Double space in haunted house description #15

Open eriktorbjorn opened 4 years ago

eriktorbjorn commented 4 years ago

If you enter the haunted house without a light, but under the influence of the blort potion, the description looks like this:

>LOOK
Haunted House
Despite the effects of the blort potion, this place  is quite dark. You can see
vague shapes swaying about in the darkness.

There's a double space between "place" and "is". That's because of HAUNTED-HOUSE-F:

<ROUTINE HAUNTED-HOUSE-F (RARG)
     <COND (<EQUAL? .RARG ,M-LOOK>
        <COND (,LIT
               <TELL
"Something about this place seems to soak up all light, so that it">)
              (,BLORTED
               <TELL
"Despite the effects of the blort potion, this place ">)
                  (T
               <TELL "It">)>
        <TELL
" is quite dark. You can see vague shapes swaying about in the darkness." CR>)
           (<EQUAL? .RARG ,M-ENTER>
        <ENABLE <QUEUE I-HAUNT 1>>
        <RFALSE>)>>

There's an extra space in the BLORTED case.