From: nethack.allison Date: Fri, 12 May 2006 01:59:56 +0000 (+0000) Subject: Delphi follow-up 2 (trunk only) X-Git-Tag: MOVE2GIT~1020 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6f9da60b958da005c0d4219090757776ae3f410b;p=nethack Delphi follow-up 2 (trunk only) oops, Pat pointed out that I altered the logic. --- diff --git a/src/hack.c b/src/hack.c index 724839d97..01627cc04 100644 --- a/src/hack.c +++ b/src/hack.c @@ -1868,12 +1868,14 @@ register boolean newlev; { struct monst *oracle = monstinroom(&mons[PM_ORACLE], roomno); - if (oracle && !oracle->mpeaceful) - verbalize("You're in Delphi, %s.", - plname); - else - verbalize("%s, %s, welcome to Delphi!", + if (oracle) { + if (!oracle->mpeaceful) + verbalize("You're in Delphi, %s.", + plname); + else + verbalize("%s, %s, welcome to Delphi!", Hello((struct monst *) 0), plname); + } break; } case TEMPLE: