From bd3da25934de47a9d0ead4836c135fb0fe2a4022 Mon Sep 17 00:00:00 2001 From: "John \"Elwin\" Edwards" Date: Mon, 10 Aug 2015 20:39:40 -0400 Subject: [PATCH] Advanced Rogue 7: rearrange messages from potions of food detection. The message about detecting food now appears before the food symbols are displayed. I think this is closer to the original behavior. --- arogue7/potions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arogue7/potions.c b/arogue7/potions.c index ab3da18..79982b0 100644 --- a/arogue7/potions.c +++ b/arogue7/potions.c @@ -662,6 +662,7 @@ bool is_potion; if (show) { if (is_potion) p_know[P_FFIND] = TRUE; msg("Your nose tingles."); + msg("You sense the presence of food on this level."); waddstr(msgw, morestr); clearok(msgw, FALSE); draw(msgw); @@ -669,7 +670,6 @@ bool is_potion; msg(""); overlay(hw,cw); draw(cw); - msg("You sense the presence of food on this level."); } else msg("You have a strange feeling for a moment, then it passes.");