better one-two coefficient
This commit is contained in:
parent
13aca8e5c7
commit
d9435633a7
1 changed files with 1 additions and 1 deletions
|
@ -386,7 +386,7 @@ function injectCounter() {
|
||||||
grandTichuUnsuccesful: lostGrand,
|
grandTichuUnsuccesful: lostGrand,
|
||||||
tichuUnsuccesful: lostTichu,
|
tichuUnsuccesful: lostTichu,
|
||||||
tichuCoefficient: (( (generalStats.grandTichuSuccessful - lostGrand) * 200 + (generalStats.tichuSuccessful - lostTichu) * 100 ) / generalStats.rounds).toFixed(1),
|
tichuCoefficient: (( (generalStats.grandTichuSuccessful - lostGrand) * 200 + (generalStats.tichuSuccessful - lostTichu) * 100 ) / generalStats.rounds).toFixed(1),
|
||||||
oneTwoCoefficient: (200 * generalStats.oneTwo / generalStats.rounds).toFixed(1)
|
oneTwoCoefficient: (100 * generalStats.oneTwo / generalStats.rounds).toFixed(1) // note that we only use 100 here, as a One-Two is scored for both players. This way, this is better comparable to the tichuCoefficient
|
||||||
}
|
}
|
||||||
|
|
||||||
var userStats = {
|
var userStats = {
|
||||||
|
|
Loading…
Reference in a new issue