AnssiR66 / AlanStdLib

The Standard Library for ALAN Interactive Fiction Language
Other
5 stars 2 forks source link

Delete `put_down` Attribute #41

Closed tajmone closed 5 years ago

tajmone commented 5 years ago

The put_down verb restriction attribute was not being used inside any verbs (probably left over from and old put_down verb).

Currently 'put down' is a syntax of drop, which is contolled by the drop restriction attribute.

tajmone commented 5 years ago

Second Commit: Fix wear

The IF THIS IS NOT plural was useless since it would use the same response anyhow:

  VERB wear
    CHECK ...
    AND obj IS takeable
      ELSE
        IF THIS IS NOT plural
          THEN SAY check_obj_takeable OF my_game.
          ELSE SAY check_obj_takeable OF my_game.
        END IF.

Fixed to:

    AND obj IS takeable
      ELSE SAY check_obj_takeable OF my_game.