From: nethack.allison Date: Fri, 14 Apr 2006 15:26:45 +0000 (+0000) Subject: hostile prisoner chat X-Git-Tag: MOVE2GIT~1066 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f9314448f76409a617a345f35996a0fdf1754b5b;p=nethack 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. --- 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) {