another "your corpse" case

- switch aobjnam() to use cxname, not xname
- update Tobjnam() comment, since it can still use xname w/o confusion

A specific case that's fixed: You begin bashing monsters with your corpse.
This commit is contained in:
cohrs
2002-03-06 04:14:30 +00:00
parent 3e582e40da
commit 3ca42c2265

View File

@@ -951,13 +951,13 @@ const char *str;
return tmp;
}
/* returns "count xname(otmp)" or just xname(otmp) if count == 1 */
/* returns "count cxname(otmp)" or just cxname(otmp) if count == 1 */
char *
aobjnam(otmp,verb)
register struct obj *otmp;
register const char *verb;
{
register char *bp = xname(otmp);
register char *bp = cxname(otmp);
char prefix[PREFIX];
if(otmp->quan != 1L) {
@@ -972,7 +972,7 @@ register const char *verb;
return(bp);
}
/* like aobjnam, but prepend "The", not count */
/* like aobjnam, but prepend "The", not count, and use xname */
char *
Tobjnam(otmp, verb)
register struct obj *otmp;