Fix ladderhelp documentation

We did a whole refactor to TypeScript but #2289 is still right:

15666f8711/src/ladder.ts (L329)

Fixes #2289
This commit is contained in:
Guangcong Luo 2025-05-04 11:54:50 +00:00
parent 09440e78e4
commit f52e4b2aad
3 changed files with 3 additions and 6 deletions

View File

@ -19,8 +19,7 @@ Dein Rating startet bei 1000.
Unser Elo-System benutzt zur Durchführung K-scaling. Der Faktor K lautet:
* K = 50 falls die Elo zwischen 1100 1299 liegt
* K = 40 falls die Elo zwischen 1300  1599 liegt
* K = 32 falls die Elo 1600 oder höher beträgt
* K = 40 falls die Elo 1300 oder höher beträgt
Wir haben einen so genannten rating floor von 1000 (wenn dein Rating unter 1000 fallen würde, bleibt es bei 1000). So wird verhindert, dass man neue Accounts erstellen muss, um das eigene Rating "wiederherzustellen".

View File

@ -17,8 +17,7 @@ LadderにはElo、GXE、Glicko-1の3種類のレーティングがあります
Eloの実装には"K-scaling"を使用しています。 Kの変数の範囲は以下の通りです:
* K = 50 (Elo = 1100 1299)
* K = 40 (Elo = 1300 1599)
* K = 32 (Elo = 1600以上)
* K = 40 (Elo = 1300以上)
レーティングの下限は1000になっています。(1000を下回る場合、1000に修正されます)これにより、レーティングを「修正」するためにアカウントを作り直す必要はなくなります。
1000から1100の間では、特別な挙動をします。

View File

@ -19,8 +19,7 @@ Your rating starts at 1000.
Our Elo implementation uses K-scaling. The K factor is:
* K = 50 if Elo is 1100 1299
* K = 40 if Elo is 1300  1599
* K = 32 if Elo is 1600 or higher
* K = 40 if Elo is 1300 or higher
We have a rating floor of 1000 (If your rating would fall below 1000, it is set to 1000). This makes it unnecessary to create new accounts to "fix" your rating.