From: nhmall Date: Sun, 14 Feb 2016 23:13:08 +0000 (-0500) Subject: another Deaf bit X-Git-Tag: NetHack-3.6.1_RC01~923 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=592ae6972626c41c52100b14f1c77bb83323faf8;p=nethack another Deaf bit Changes to be committed: modified: src/engrave.c --- diff --git a/src/engrave.c b/src/engrave.c index 3cc559275..088cad8ce 100644 --- a/src/engrave.c +++ b/src/engrave.c @@ -1,4 +1,4 @@ -/* NetHack 3.6 engrave.c $NHDT-Date: 1445388915 2015/10/21 00:55:15 $ $NHDT-Branch: master $:$NHDT-Revision: 1.59 $ */ +/* NetHack 3.6 engrave.c $NHDT-Date: 1455491569 2016/02/14 23:12:49 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.60 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* NetHack may be freely redistributed. See license for details. */ @@ -732,16 +732,18 @@ doengrave() doknown = TRUE; } Strcpy(post_engr_text, - Blind + (Blind && !Deaf) ? "You hear drilling!" - : IS_GRAVE(levl[u.ux][u.uy].typ) - ? "Chips fly out from the headstone." - : is_ice(u.ux, u.uy) - ? "Ice chips fly up from the ice surface!" - : (level.locations[u.ux][u.uy].typ - == DRAWBRIDGE_DOWN) - ? "Splinters fly up from the bridge." - : "Gravel flies up from the floor."); + : Blind + ? "You feel tremors." + : IS_GRAVE(levl[u.ux][u.uy].typ) + ? "Chips fly out from the headstone." + : is_ice(u.ux, u.uy) + ? "Ice chips fly up from the ice surface!" + : (level.locations[u.ux][u.uy].typ + == DRAWBRIDGE_DOWN) + ? "Splinters fly up from the bridge." + : "Gravel flies up from the floor."); break; /* type = BURN wands */ case WAN_FIRE: @@ -767,7 +769,9 @@ doengrave() Strcpy(post_engr_text, "Lightning arcs from the wand."); doblind = TRUE; } else - Strcpy(post_engr_text, "You hear crackling!"); + Strcpy(post_engr_text, !Deaf + ? "You hear crackling!" + : "Your hair stands up!"); break; /* type = MARK wands */