diff --git a/doc/fixes34.4 b/doc/fixes34.4 index 0301c7808..77a962711 100644 --- a/doc/fixes34.4 +++ b/doc/fixes34.4 @@ -71,6 +71,7 @@ avoid "your steed is still eating" message when going through a magic portal cannot drink from fountain, sink or surrounding water while swallowed don't hallucinate anything for an exploding black light as it dies give blindness feedback when moving into/through stinking cloud +fix case on monster name when monster reflects floating eye's gaze Platform- and/or Interface-Specific Fixes diff --git a/src/mhitm.c b/src/mhitm.c index f085ef00e..04f33cd45 100644 --- a/src/mhitm.c +++ b/src/mhitm.c @@ -1411,7 +1411,7 @@ int mdead; if (magr->mcansee && haseyes(madat) && mdef->mcansee && (perceives(madat) || !mdef->minvis)) { Sprintf(buf, "%s gaze is reflected by %%s %%s.", - s_suffix(mon_nam(mdef))); + s_suffix(Monnam(mdef))); if (mon_reflects(magr, canseemon(magr) ? buf : (char *)0)) return(mdead|mhit);