From: nhmall Date: Fri, 19 Jun 2015 21:23:51 +0000 (-0400) Subject: I'm told Death is absent from two titles X-Git-Tag: NetHack-3.6.0_RC01~258^2~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d167f86f1d8b8846fa12ac1f3603f81e0919724d;p=nethack I'm told Death is absent from two titles --- diff --git a/src/sounds.c b/src/sounds.c index 782a7f29e..72058cfae 100644 --- a/src/sounds.c +++ b/src/sounds.c @@ -1,4 +1,4 @@ -/* NetHack 3.6 sounds.c $NHDT-Date: 1434748653 2015/06/19 21:17:33 $ $NHDT-Branch: master $:$NHDT-Revision: 1.65 $ */ +/* NetHack 3.6 sounds.c $NHDT-Date: 1434749027 2015/06/19 21:23:47 $ $NHDT-Branch: master $:$NHDT-Revision: 1.66 $ */ /* Copyright (c) 1989 Janet Walz, Mike Threepoint */ /* NetHack may be freely redistributed. See license for details. */ @@ -920,8 +920,8 @@ register struct monst *mtmp; if (tribtitle) { Sprintf(verbuf, "Ah, so you have a copy of /%s/.", tribtitle); /* no Death featured in these two, so exlude them */ - if (!(strcmpi(tribtitle "Snuff") == 0 || - strcmpi(tribtitle, "The Wee Free Men" == 0))) + if (!(strcmpi(tribtitle, "Snuff") == 0) || + (strcmpi(tribtitle, "The Wee Free Men") == 0)) Strcat(verbuf, " I may have been misquoted there."); verbl_msg = verbuf; context.tribute.Deathnotice = 1;