You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 27, 2021. It is now read-only.
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 {