Minor text cleanups (David.)
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@898 c06c8d41-db1a-0410-9941-cceddc491573
4PUWNQO7QMEWY3GSUHLBKMYOAI7ASYSRM32KDGTA7DLNDIGFAWFAC
snprintf( info, INFO_SIZE,
"You are currently targeting %s (use p/t to fire).",
ptr_monam(montarget, DESC_NOCAP_THE) );
mpr(info);
return (true); // early return {dlb}
mprf( MSGCH_PROMPT, "You are currently targeting %s "
"(use p/t/f to fire at it again.)",
ptr_monam(montarget, DESC_NOCAP_THE) );
return (true);
if ( moves.isTarget && !see_grid(moves.tx, moves.ty) )
// A bunch of confirmation tests; if we survive them all,
// then break out.
// Conceivably we might want to confirm on TARG_ANY too.
if ( moves.isTarget &&
moves.tx == you.x_pos && moves.ty == you.y_pos &&
mode == TARG_ENEMY && Options.confirm_self_target &&
!yesno("Really target yourself?"))
{
canned_msg(MSG_OK);
}
else if ( moves.isTarget && !see_grid(moves.tx, moves.ty) )