tame hidden monster message

<email deleted> wrote:
> * Searching next to a tame hidden monster gives the message "You find a
> <kraken>." It should be "your <kraken>."

While I don't consider this a bug, the change seems appropriate.
This commit is contained in:
nethack.allison
2006-02-24 02:54:58 +00:00
parent d83513b471
commit a732a87ee2
2 changed files with 5 additions and 1 deletions

View File

@@ -196,6 +196,8 @@ you no longer "fry to a crisp" as a water elemental
change leather spellbook to leathery; pertains to appearance, not composition change leather spellbook to leathery; pertains to appearance, not composition
more precise probing/stethoscope feedback when engulfed more precise probing/stethoscope feedback when engulfed
make baby long worms have lower level than full grown ones make baby long worms have lower level than full grown ones
use "your kraken" instead of "a kraken" when searching reveals a tame
hidden monster
Platform- and/or Interface-Specific Fixes Platform- and/or Interface-Specific Fixes

View File

@@ -1282,7 +1282,9 @@ register int aflag;
map_invisible(x, y); map_invisible(x, y);
} }
} else if (!sensemon(mtmp)) } else if (!sensemon(mtmp))
You("find %s.", a_monnam(mtmp)); You("find %s.", mtmp->mtame ?
y_monnam(mtmp) :
a_monnam(mtmp));
return(1); return(1);
} }
if(!canspotmon(mtmp)) { if(!canspotmon(mtmp)) {