From 6f9da60b958da005c0d4219090757776ae3f410b Mon Sep 17 00:00:00 2001 From: "nethack.allison" Date: Fri, 12 May 2006 01:59:56 +0000 Subject: [PATCH] Delphi follow-up 2 (trunk only) oops, Pat pointed out that I altered the logic. --- src/hack.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) 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: -- 2.50.1