Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
GuoWQ222 committed May 10, 2024
1 parent 2b12d0a commit efd966e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion logic/Server/GameServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ protected static double[] LadderCalculate(double[] oriScores, double[] competiti
* winnerWeight
* (1 - Math.Tanh(normalOriDelta))
* correct)); // 胜者所加天梯分)
resScore[1] = Math.Max(-120,-Math.Round(Math.Pow(competitionDelta, 2)
resScore[1] = Math.Max(-120, -Math.Round(Math.Pow(competitionDelta, 2)
* loserWeight
* (1 - Math.Tanh(normalOriDelta))
* correct)); // 败者所扣天梯分
Expand Down

0 comments on commit efd966e

Please sign in to comment.