From d7f9fbaa6c3bce1fdd632ecfbf9bfa1423207043 Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Sat, 17 May 2025 12:32:02 -0500 Subject: [PATCH] alchemy in combat: better buffer message --- src/game/boe.actions.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/game/boe.actions.cpp b/src/game/boe.actions.cpp index 8f9395fb..18dcb438 100644 --- a/src/game/boe.actions.cpp +++ b/src/game/boe.actions.cpp @@ -1220,6 +1220,7 @@ void handle_alchemy(bool& need_redraw, bool& need_reprint) { else add_string_to_buf("Alchemy: No recipes known."); } + else if(is_combat()) add_string_to_buf("Alchemy: Not in combat."); else if(!is_town()) add_string_to_buf("Alchemy: Only in town."); else add_string_to_buf("Alchemy: " + FINISH_FIRST); }