Merge branch 'NetHack-3.6.2'

This commit is contained in:
nhmall
2018-11-10 15:09:41 -05:00
25 changed files with 278 additions and 74 deletions

View File

@@ -178,7 +178,9 @@ const char *verb;
if (Blind && (x == u.ux) && (y == u.uy)) {
You_hear("a CRASH! beneath you.");
} else if (!Blind && cansee(x, y)) {
pline_The("boulder %s%s.", t->tseen ? "" : "triggers and ",
pline_The("boulder %s%s.",
(t->ttyp == TRAPDOOR && !t->tseen)
? "triggers and " : "",
t->ttyp == TRAPDOOR
? "plugs a trap door"
: t->ttyp == HOLE ? "plugs a hole"
@@ -1059,6 +1061,8 @@ doup()
return 1;
}
if (ledger_no(&u.uz) == 1) {
if (iflags.debug_fuzzer)
return 0;
if (yn("Beware, there will be no return! Still climb?") != 'y')
return 0;
}