From: nethack.allison Date: Sun, 30 Jun 2002 00:40:30 +0000 (+0000) Subject: headstone engraving with wand of digging X-Git-Tag: MOVE2GIT~2713 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2fc940d51ea56504610e53374cea44d88450126b;p=nethack headstone engraving with wand of digging Sent: Thursday, June 13, 2002 12:03 PM Subject: Beta 1 comments > Headstone writing still uses the adjective "weird" when engraving with > a wand of digging. --- diff --git a/doc/fixes34.1 b/doc/fixes34.1 index e292ee147..58cf0222a 100644 --- a/doc/fixes34.1 +++ b/doc/fixes34.1 @@ -127,6 +127,8 @@ naming either of the wielded weapons unintentionally ends two-weapon combat Various nemesis monsters must resist stoning so their death messages make sense don't call DEBUG impossible in rn2 when a level 0 monster tries to cast a spell GOLDOBJ: don't call money2mon with 0 zero when killed by shopkeeper +headstone writing was using the adjective "weird" when engraving with a wand + of digging. Platform- and/or Interface-Specific Fixes diff --git a/src/engrave.c b/src/engrave.c index ebbcb1bc9..5be718762 100644 --- a/src/engrave.c +++ b/src/engrave.c @@ -933,6 +933,10 @@ doengrave() "write in"); eloc = is_ice(u.ux,u.uy) ? "frost" : "dust"; break; + case HEADSTONE: + everb = (oep && !eow ? "add to the epitaph on" : + "engrave on"); + break; case ENGRAVE: everb = (oep && !eow ? "add to the engraving in" : "engrave in");