From a3cd5c9e7313da1948b324b58ac8627fdbf234d7 Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Wed, 15 Jan 2025 15:07:26 -0600 Subject: [PATCH] When replay throws an error, stop replaying --- src/game/boe.main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/game/boe.main.cpp b/src/game/boe.main.cpp index 033a7468..40fe2189 100644 --- a/src/game/boe.main.cpp +++ b/src/game/boe.main.cpp @@ -648,6 +648,7 @@ void replay_action(Element& action) { }else{ std::ostringstream sstr; sstr << "Couldn't replay action: " << action; + replaying = false; throw sstr.str(); }