From eaa6384fee377a69377937fe77c552211d8af242 Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Tue, 24 Sep 2024 11:48:32 -0500 Subject: [PATCH] fix some advance_time cases --- src/game/boe.main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/game/boe.main.cpp b/src/game/boe.main.cpp index f3ce48fa..9ec5de1e 100644 --- a/src/game/boe.main.cpp +++ b/src/game/boe.main.cpp @@ -296,10 +296,12 @@ static void replay_next_action() { eStartButton btn = static_cast(std::stoi(info["btn"])); eKeyMod mods = static_cast(std::stoi(info["mods"])); handle_startup_button_click(btn, mods); + return; }else if(t == "load_party"){ decode_file(next_action.GetText(), tempDir / "temp.exg"); load_party(tempDir / "temp.exg", univ); finish_load_party(); + return; }else if(t == "move"){ location l = location_from_action(next_action); handle_move(l, did_something, need_redraw, need_reprint);