Merge branch 'NetHack-3.6.2'
This commit is contained in:
6
src/do.c
6
src/do.c
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user