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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (nohw)
|
if (nohw) {
|
||||||
msg("Your prayer has been granted.");
|
msg("Your prayer has been granted.--More--");
|
||||||
|
wait_for(msgw,' ');
|
||||||
|
msg("");
|
||||||
|
}
|
||||||
else {
|
else {
|
||||||
mvwaddstr(hw, 0, 0, "Your prayer has been granted.--More--");
|
mvwaddstr(hw, 0, 0, "Your prayer has been granted.--More--");
|
||||||
wclrtoeol(hw);
|
wclrtoeol(hw);
|
||||||
|
|
|
||||||
|
|
@ -393,10 +393,10 @@ bool is_potion;
|
||||||
*/
|
*/
|
||||||
if (mlist != NULL)
|
if (mlist != NULL)
|
||||||
{
|
{
|
||||||
msg("You begin to sense the presence of monsters.");
|
|
||||||
waddstr(msgw, morestr);
|
|
||||||
overlay(mw, cw);
|
overlay(mw, cw);
|
||||||
draw(cw);
|
draw(cw);
|
||||||
|
msg("You begin to sense the presence of monsters.%s", morestr);
|
||||||
|
draw(msgw);
|
||||||
wait_for(cw,' ');
|
wait_for(cw,' ');
|
||||||
msg("");
|
msg("");
|
||||||
if (is_potion) p_know[P_MFIND] = TRUE;
|
if (is_potion) p_know[P_MFIND] = TRUE;
|
||||||
|
|
@ -459,10 +459,11 @@ bool is_potion;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (show) {
|
if (show) {
|
||||||
msg("You sense the presence of magic on this level.");
|
|
||||||
waddstr(msgw, morestr);
|
|
||||||
overlay(hw,cw);
|
overlay(hw,cw);
|
||||||
draw(cw);
|
draw(cw);
|
||||||
|
msg("You sense the presence of magic on this level.%s",
|
||||||
|
morestr);
|
||||||
|
draw(msgw);
|
||||||
wait_for(cw,' ');
|
wait_for(cw,' ');
|
||||||
msg("");
|
msg("");
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue