From 8abefb15055e254715d44b30d5f39058aaa8fbfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konrad=20Ku=C5=9Bnierz?= Date: Sun, 19 Jul 2015 10:27:06 +0200 Subject: [PATCH] Fix #601, fix #599 --- src/client/game.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/game.cpp b/src/client/game.cpp index 106742c6..fb114b78 100644 --- a/src/client/game.cpp +++ b/src/client/game.cpp @@ -1439,7 +1439,7 @@ bool Game::canPerformGameAction() // - we have a game protocol // - the game protocol is connected // - its not a bot action - return m_online && m_localPlayer && !m_dead && m_protocolGame && m_protocolGame->isConnected() && checkBotProtection(); + return m_online && m_localPlayer && !m_localPlayer->isDead() && !m_dead && m_protocolGame && m_protocolGame->isConnected() && checkStackTrace(); } void Game::setProtocolVersion(int version)