Skip to content

Commit

Permalink
修改c4wtrain_l模式评分标准
Browse files Browse the repository at this point in the history
  • Loading branch information
MrZ626 committed Jan 12, 2025
1 parent cf7f1da commit 25dcd46
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions parts/modes/c4wtrain_l.lua
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,14 @@ return {
if L==100 then
local T=P.stat.time
return
T<=40 and 5 or
T<=60 and 4 or
T<=42 and 5 or
T<=62 and 4 or
3
else
return
L>=70 and 3 or
L>=40 and 2 or
L>=20 and 1 or
L>=5 and 0
L>=60 and 2 or
L>=26 and 1 or
L>=10 and 0
end
end,
}

0 comments on commit 25dcd46

Please sign in to comment.