diff --git a/source/game.cpp b/source/game.cpp index 16832b7..8549c8c 100644 --- a/source/game.cpp +++ b/source/game.cpp @@ -2753,6 +2753,11 @@ void Game::addScoreToScoreBoard(std::string name, int score) // Comprueba el estado de los jugadores void Game::checkPlayersStatusPlaying() { + if (demo.enabled) + { + return; + } + for (auto player : players) { switch (player->getStatusPlaying())