When advising the user that greedy explore won't work, make sure they see the message.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@745 c06c8d41-db1a-0410-9941-cceddc491573
TXFN7TLLKYEM2W5HVB2UXKXUH7MTXOU77PXBPMP7NJKXSLVX5PMQC
if ( MONST_INTERESTING(monster) ||
// XXX yucky hack
monster->type == MONS_PLAYER_GHOST ||
monster->type == MONS_PANDEMONIUM_DEMON ) {
/* make a note of it */
char namebuf[ITEMNAME_SIZE];
if ( monster->type == MONS_PLAYER_GHOST ) {
snprintf( namebuf, sizeof(namebuf), "the ghost of %s",
ghost.name );
}
else if ( monster->type == MONS_PANDEMONIUM_DEMON ) {
strncpy( namebuf, ghost.name, sizeof(namebuf) );
}
else
moname(monster->type, true, DESC_NOCAP_A, namebuf);
take_note(Note(NOTE_KILL_MONSTER, monster->type, 0, namebuf));
}
if ( MONST_INTERESTING(monster) ||
// XXX yucky hack
monster->type == MONS_PLAYER_GHOST ||
monster->type == MONS_PANDEMONIUM_DEMON )
{
take_note(Note(NOTE_KILL_MONSTER, monster->type, 0,
ptr_monam(monster, DESC_NOCAP_A)));
}
&& MONST_INTERESTING(monster)) {
char namebuf[ITEMNAME_SIZE];
moname(monster->type, true, DESC_NOCAP_A, namebuf);
take_note(Note(NOTE_POLY_MONSTER, monster->type, 0, namebuf));
&& MONST_INTERESTING(monster))
{
take_note(Note(NOTE_POLY_MONSTER, monster->type, 0,
ptr_monam(monster, DESC_NOCAP_A)));