From 5cc4898bf7799a436786a3154be07889f9d74512 Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Tue, 24 Sep 2024 19:38:57 -0500 Subject: [PATCH] fix advancee_time behavior of more actions --- src/game/boe.main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/game/boe.main.cpp b/src/game/boe.main.cpp index 683cfa39..558979a4 100644 --- a/src/game/boe.main.cpp +++ b/src/game/boe.main.cpp @@ -327,8 +327,10 @@ static void replay_next_action() { update_item_stats_area(need_reprint); }else if(t == "handle_alchemy"){ handle_alchemy(need_redraw, need_reprint); + return; }else if(t == "handle_wait"){ handle_wait(did_something, need_redraw, need_reprint); + return; }else if(t == "handle_combat_switch"){ handle_combat_switch(did_something, need_redraw, need_reprint); }else if(t == "handle_missile"){ @@ -354,6 +356,7 @@ static void replay_next_action() { return; }else if(t == "show_dialog_action"){ show_dialog_action(next_action.GetText()); + return; }else if(t == "handle_drop_pc"){ handle_drop_pc(); }else if(t == "new_party"){