From d003abea6fd132ec7a77291e9a258932d03023f0 Mon Sep 17 00:00:00 2001 From: AlexVinS Date: Mon, 5 Dec 2016 02:52:34 +0300 Subject: [PATCH] Fixed CID 1197624 --- client/Client.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/client/Client.cpp b/client/Client.cpp index 36645da75..4a6536fd8 100644 --- a/client/Client.cpp +++ b/client/Client.cpp @@ -147,19 +147,15 @@ void CClient::waitForMoveAndSend(PlayerColor color) MakeAction temp_action(ba); sendRequest(&temp_action, color); } - return; } catch(boost::thread_interrupted&) { logNetwork->debugStream() << "Wait for move thread was interrupted and no action will be send. Was a battle ended by spell?"; - return; } catch(...) { handleException(); - return; } - logNetwork->errorStream() << "We should not be here!"; } void CClient::run()