minor flavor bit of the day

This commit is contained in:
nhmall
2020-02-29 13:57:31 -05:00
parent ae27942cd6
commit cca2bcaa84
3 changed files with 37 additions and 4 deletions

View File

@@ -1285,6 +1285,23 @@ have_lizard()
return FALSE;
}
struct obj *
u_carried_gloves() {
struct obj *otmp, *gloves = (struct obj *) 0;
if (uarmg) {
gloves = uarmg;
} else {
for (otmp = g.invent; otmp; otmp = otmp->nobj)
if (is_gloves(otmp)) {
gloves = otmp;
break;
}
}
return gloves;
}
/* 3.6 tribute */
struct obj *
u_have_novel()