diff arogue5/potions.c @ 79:34a87d84ea31

arogue5: make some prayer-related messages appear properly.
author John "Elwin" Edwards <elwin@sdf.org>
date Sun, 09 Sep 2012 17:58:38 -0700
parents ae7643e1194b
children 56e748983fa8
line wrap: on
line diff
--- a/arogue5/potions.c	Sun Sep 09 15:55:51 2012 -0700
+++ b/arogue5/potions.c	Sun Sep 09 17:58:38 2012 -0700
@@ -393,10 +393,10 @@
 	     */
 	    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 @@
 		    }
 		}
 		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;