Add a funny message for when a burrower eats food.
This commit is contained in:
+9
-4
@@ -239,10 +239,15 @@ boolean devour;
|
|||||||
unseen spot to eat the food there, avoid referring to that
|
unseen spot to eat the food there, avoid referring to that
|
||||||
pet as "it". However, we want "it" if invisible/unsensed
|
pet as "it". However, we want "it" if invisible/unsensed
|
||||||
pet eats visible food. */
|
pet eats visible food. */
|
||||||
if (seeobj || sawpet)
|
if (sawpet || (seeobj && canspotmon(mtmp))) {
|
||||||
pline("%s %s %s.",
|
if (tunnels(mtmp->data))
|
||||||
(sawpet || canspotmon(mtmp)) ? noit_Monnam(mtmp) : "It",
|
pline("%s digs in.", noit_Monnam(mtmp));
|
||||||
devour ? "devours" : "eats", distant_name(obj, doname));
|
else
|
||||||
|
pline("%s %s %s.", noit_Monnam(mtmp),
|
||||||
|
devour ? "devours" : "eats", distant_name(obj, doname));
|
||||||
|
} else if (seeobj)
|
||||||
|
pline("It %s %s.", devour ? "devours" : "eats",
|
||||||
|
distant_name(obj, doname));
|
||||||
}
|
}
|
||||||
if (obj->unpaid) {
|
if (obj->unpaid) {
|
||||||
Strcpy(objnambuf, xname(obj));
|
Strcpy(objnambuf, xname(obj));
|
||||||
|
|||||||
Reference in New Issue
Block a user