Merge branch 'NetHack-3.6'

This commit is contained in:
nhmall
2019-11-11 14:32:09 -05:00
12 changed files with 210 additions and 153 deletions
+5 -2
View File
@@ -4435,7 +4435,9 @@ short exploding_wand_typ;
} else if (is_pool(x, y)) {
const char *msgtxt = (!Deaf)
? "You hear hissing gas." /* Deaf-aware */
: "That seemed remarkably uneventful.";
: (type >= 0)
? "That seemed remarkably uneventful."
: (const char *) 0;
if (lev->typ != POOL) { /* MOAT or DRAWBRIDGE_UP */
if (see_it)
@@ -4449,7 +4451,8 @@ short exploding_wand_typ;
if (see_it)
msgtxt = "The water evaporates.";
}
Norep("%s", msgtxt);
if (msgtxt)
Norep("%s", msgtxt);
if (lev->typ == ROOM)
newsym(x, y);
} else if (IS_FOUNTAIN(lev->typ)) {