Skip to content
This repository has been archived by the owner on Oct 22, 2023. It is now read-only.

Commit

Permalink
Fixed a bug where importing a shared a contract causes the score to be 0
Browse files Browse the repository at this point in the history
  • Loading branch information
LennardF1989 committed Jul 19, 2023
1 parent 266cbe8 commit da926ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Src/HM5.Server/Services/ContractsService.cs
Expand Up @@ -282,7 +282,7 @@ private SimpleContract MapContractToSimpleContract(Contract contract)
CheckpointIndex = contract.CheckpointIndex,
StartingOutfitToken = contract.StartingOutfitToken,
StartingWeaponToken = contract.StartingWeaponToken,
Score = contract.UserScore
Score = contract.HighestScoringFriendScore
};
}
}
Expand Down

0 comments on commit da926ce

Please sign in to comment.