arogue5: make some prayer-related messages appear properly.
This commit is contained in:
parent
ad5245c5f8
commit
b6bcf2e3f4
2 changed files with 10 additions and 6 deletions
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue