Merge branch 'NetHack-3.6.2'

This commit is contained in:
nhmall
2019-01-09 07:24:18 -05:00
39 changed files with 239 additions and 230 deletions

View File

@@ -2883,7 +2883,7 @@ STATIC_DCL void
wizkit_addinv(obj)
struct obj *obj;
{
if (!obj || obj == &g.zeroobj)
if (!obj || obj == &cg.zeroobj)
return;
/* subset of starting inventory pre-ID */
@@ -2913,7 +2913,7 @@ char *buf;
struct obj *otmp = readobjnam(buf, (struct obj *) 0);
if (otmp) {
if (otmp != &g.zeroobj)
if (otmp != &cg.zeroobj)
wizkit_addinv(otmp);
} else {
/* .60 limits output line width to 79 chars */