arogue5: make some prayer-related messages appear properly.

This commit is contained in:
John "Elwin" Edwards 2012-09-09 17:58:38 -07:00
parent ad5245c5f8
commit b6bcf2e3f4
2 changed files with 10 additions and 6 deletions

View file

@ -451,8 +451,11 @@ pray()
return;
}
if (nohw)
msg("Your prayer has been granted.");
if (nohw) {
msg("Your prayer has been granted.--More--");
wait_for(msgw,' ');
msg("");
}
else {
mvwaddstr(hw, 0, 0, "Your prayer has been granted.--More--");
wclrtoeol(hw);

View file

@ -393,10 +393,10 @@ bool is_potion;
*/
if (mlist != NULL)
{
msg("You begin to sense the presence of monsters.");
waddstr(msgw, morestr);
overlay(mw, cw);
draw(cw);
msg("You begin to sense the presence of monsters.%s", morestr);
draw(msgw);
wait_for(cw,' ');
msg("");
if (is_potion) p_know[P_MFIND] = TRUE;
@ -459,10 +459,11 @@ bool is_potion;
}
}
if (show) {
msg("You sense the presence of magic on this level.");
waddstr(msgw, morestr);
overlay(hw,cw);
draw(cw);
msg("You sense the presence of magic on this level.%s",
morestr);
draw(msgw);
wait_for(cw,' ');
msg("");
break;