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:
@@ -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
|
||||
more precise probing/stethoscope feedback when engulfed
|
||||
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
|
||||
|
||||
@@ -1282,7 +1282,9 @@ register int aflag;
|
||||
map_invisible(x, y);
|
||||
}
|
||||
} else if (!sensemon(mtmp))
|
||||
You("find %s.", a_monnam(mtmp));
|
||||
You("find %s.", mtmp->mtame ?
|
||||
y_monnam(mtmp) :
|
||||
a_monnam(mtmp));
|
||||
return(1);
|
||||
}
|
||||
if(!canspotmon(mtmp)) {
|
||||
|
||||
Reference in New Issue
Block a user