johanberntsson / PunyInform

A fast and compact library for writing text adventure games for the Z-machine running on 8-bit computers as well as other platforms.
MIT License
176 stars 17 forks source link

Grammar of verb 'enter' without noun #105

Closed auraes closed 2 years ago

auraes commented 2 years ago

There seems to be a missing entry in the grammar for the verb 'enter' without complement:

Verb 'enter'
    * noun                                      -> Enter;

Verb 'exit' 'leave'
    *                                           -> Exit
    * noun                                      -> Exit;
Verb 'enter'
    *                                           -> GoIn
    * noun                                      -> Enter;
johanberntsson commented 2 years ago

Thanks for the heads up. Now working when the OPTIONAL_EXTENDED_VERBSET is activated.