In multiplayer mode, don't start the game unless at least 2 players joined

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@9633 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
auria
2011-08-28 00:20:51 +00:00
parent ecbdf707c6
commit c8be0cb0c6

View File

@@ -1391,7 +1391,7 @@ void KartSelectionScreen::playerConfirm(const int playerID)
}
}
if (allPlayersReady) allPlayersDone();
if (allPlayersReady && (!m_multiplayer || amount > 1)) allPlayersDone();
}
// -----------------------------------------------------------------------------