From f9314448f76409a617a345f35996a0fdf1754b5b Mon Sep 17 00:00:00 2001 From: "nethack.allison" Date: Fri, 14 Apr 2006 15:26:45 +0000 Subject: [PATCH] hostile prisoner chat wrote: > * #chatting to hostile prisoners gives "This will teach you not to disturb me!" > This only makes sense for djinn and water demons. I don't have a clue what they should say, this only deals with what they shouldn't say. --- src/sounds.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/sounds.c b/src/sounds.c index ba78d2ec2..ddc202d4e 100644 --- a/src/sounds.c +++ b/src/sounds.c @@ -643,7 +643,14 @@ register struct monst *mtmp; pline_msg = "gurgles."; else verbl_msg = "I'm free!"; - } else verbl_msg = "This will teach you not to disturb me!"; + } else { + if (ptr != &mons[PM_PRISONER]) + verbl_msg = "This will teach you not to disturb me!"; +#if 0 + else + verbl_msg = "??????????"; +#endif + } break; case MS_BOAST: /* giants */ if (!mtmp->mpeaceful) { -- 2.40.0