]> granicus.if.org Git - nethack/commitdiff
Crunched to crunched
authornethack.allison <nethack.allison>
Tue, 4 Feb 2003 00:14:08 +0000 (00:14 +0000)
committernethack.allison <nethack.allison>
Tue, 4 Feb 2003 00:14:08 +0000 (00:14 +0000)
<email deleted>
> comments: When dieing from an iron ball landing on your head, the death is
> listed as: "Crunched in the head by an iron ball"
> However no other deaths start with a capital letter.

doc/fixes34.1
src/ball.c

index 9cce23ed1105238552a4a51bf96cbda9a7870b6b..a53dc82d233d6ab15ecbfdbd77275d46da3c7fec 100644 (file)
@@ -369,6 +369,7 @@ Asmodeus fails an is_armed() check, so code in m_initweap() to give him wands
        of fire and cold never got called; move the code to m_initinv()
 #rub would wield the target tool even when already being worn as eyewear
 monks lose their to-hit bonus for bare-handed attacking if wearing a shield
+fix case on leading character in "Crunched in the head..." in ball.c
 
 
 Platform- and/or Interface-Specific Fixes
index d291d5ba4f105958078fe5f1cefe971b7eddeeb8..b2a05e00119f40ac4500e981383a17e2f755e755 100644 (file)
@@ -1,4 +1,4 @@
-/*     SCCS Id: @(#)ball.c     3.4     1997/04/23      */
+/*     SCCS Id: @(#)ball.c     3.4     2003/02/03      */
 /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
 /* NetHack may be freely redistributed.  See license for details. */
 
@@ -38,7 +38,7 @@ ballfall()
                    } else if (flags.verbose)
                        Your("%s does not protect you.", xname(uarmh));
                }
-               losehp(dmg, "Crunched in the head by an iron ball",
+               losehp(dmg, "crunched in the head by an iron ball",
                        NO_KILLER_PREFIX);
        }
 }