]> granicus.if.org Git - nethack/commitdiff
new and fixed messages
authorkeni <keni>
Thu, 7 Jan 2010 17:51:35 +0000 (17:51 +0000)
committerkeni <keni>
Thu, 7 Jan 2010 17:51:35 +0000 (17:51 +0000)
2 fixed messages and 2 new silly messages

src/apply.c
src/artifact.c
src/potion.c
src/sit.c

index 5592943f440bbed0dc36423a01505a420d32340a..d3de0fd369766c8d3bfa131d149b2d2dca363af8 100644 (file)
@@ -689,7 +689,7 @@ register xchar x, y;
                        /* life-saving doesn't ordinarily reset this */
                        if (mtmp->mhp > 0) u.uconduct.killer = save_pacifism;
                    } else {
-                       pline("%s chokes on the leash!", Monnam(mtmp));
+                       pline("%s is choked by the leash!", Monnam(mtmp));
                        /* tameness eventually drops to 1 here (never 0) */
                        if (mtmp->mtame && rn2(mtmp->mtame)) mtmp->mtame--;
                    }
index b185c59e74e1726026e2f622e5f997d9f937d8b6..4c5cce391f45149b7ddd9055c8c4ce98fa3e2328 100644 (file)
@@ -1201,6 +1201,8 @@ int dieroll; /* needed for Magicbane and vorpal blades */
                        *dmgptr = 2 * mdef->mhp + FATAL_DAMAGE_MODIFIER;
                        pline(behead_msg[rn2(SIZE(behead_msg))],
                              wepdesc, mon_nam(mdef));
+                       if(Hallucination && !flags.female)
+                               pline("Good job Henry, but that wasn't Anne.");
                        otmp->dknown = TRUE;
                        return TRUE;
                } else {
index e3130b2f30899db2f564ec07cd300d2df8c80b0e..29d6d76abd421d47c77a7bfeeed882f41bef8323 100644 (file)
@@ -415,7 +415,7 @@ dodrink()
        /* Or are you surrounded by water? */
        if (Underwater && !u.uswallow) {
                if (yn("Drink the water around you?") == 'y') {
-                   pline("Do you know what lives in this water!");
+                   pline("Do you know what lives in this water?");
                        return 1;
                }
        }
index e01eaa8c16699866ffcd617708df20056c90958e..394a0767c89176e70edf48278c71ed6a29b5701f 100644 (file)
--- a/src/sit.c
+++ b/src/sit.c
@@ -292,8 +292,11 @@ dosit()
                struct obj *uegg;
 
                if (!flags.female) {
+                   if(Hallucination)
+pline("You may think you are a platypus but a male still can't lay eggs!");
+                   else
                        pline("Males can't lay eggs!");
-                       return 0;
+                   return 0;
                }
 
                if (u.uhunger < (int)objects[EGG].oc_nutrition) {