修复拼花模式段位计算的1行偏差

补充拼花模式说明文本 close #1099
This commit is contained in:
MrZ_26
2024-03-03 14:27:36 +08:00
parent e49f8d428a
commit 8c4446edac
5 changed files with 6 additions and 6 deletions

View File

@@ -11,7 +11,7 @@ return {
scoreDisp=function(D) return getConstructGradeText(D[1]).." "..D[2].." Pieces" end,
comp=function(a,b) return a[1]>b[1] or a[1]==b[1] and a[2]<b[2] end,
getRank=function(P)
local G=P.modeData.maxRankPts
local G=P.modeData.maxRankPts-1
return
G>=10 and 5 or
G>=7 and 4 or