FIX: El modo demo subia la puntuación online

This commit is contained in:
2023-02-12 22:50:56 +01:00
parent 69616fddb5
commit 67b1c2cb4d
2 changed files with 8 additions and 3 deletions

View File

@@ -771,6 +771,11 @@ bool Game::sendOnlineScore()
return true;
}
if (demo.enabled)
{
return true;
}
const int score = players[0]->getScore();
if (score <= options->online.score)
{