Skip to content
This repository was archived by the owner on May 27, 2021. It is now read-only.
This repository was archived by the owner on May 27, 2021. It is now read-only.

Strange objects not mentioned in far-look message #28

Description

@tung

Using the far-look command on a strange object (e.g. a mimic in a store) accidentally leaves it out, showing a message like "a floor" instead of "a strange object on a floor".

The fix is easy, just replace this line of describe_object in pager.c:

if (votyp != STRANGE_OBJECT) {

... with these lines:

if (votyp == STRANGE_OBJECT) {
    strcpy(buf, "strange object");
} else {

See this with context on my experimental branch.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions