mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
Fix duplicate teamranks getting inserted
There was a logic error that caused the loop to never execute.
This commit is contained in:
parent
d7f0de3f29
commit
dd964316cb
|
@ -686,7 +686,7 @@ bool CScore::SaveTeamScoreThread(IDbConnection *pSqlServer, const ISqlData *pGam
|
|||
}
|
||||
if(!End)
|
||||
{
|
||||
bool SearchTeamEnd = true;
|
||||
bool SearchTeamEnd = false;
|
||||
while(!SearchTeamEnd)
|
||||
{
|
||||
Time = pSqlServer->GetFloat(3);
|
||||
|
|
Loading…
Reference in a new issue