修复挖掘模式rank判定条件错误(之前没修好)

This commit is contained in:
MrZ626
2020-10-07 19:18:41 +08:00
parent 2f21dece58
commit 5ec14a7cc1
4 changed files with 4 additions and 4 deletions

View File

@@ -27,7 +27,7 @@ return{
scoreDisp=function(D)return toTime(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)
if P.stat.row<10 then return end
if P.stat.dig<10 then return end
local T=P.stat.time
return
T<=7 and 5 or

View File

@@ -30,7 +30,7 @@ return{
scoreDisp=function(D)return toTime(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)
if P.stat.row<100 then return end
if P.stat.dig<100 then return end
local T=P.stat.time
return
T<=120 and 5 or

View File

@@ -30,7 +30,7 @@ return{
scoreDisp=function(D)return toTime(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)
if P.stat.row<40 then return end
if P.stat.dig<40 then return end
local T=P.stat.time
return
T<=50 and 5 or

View File

@@ -30,7 +30,7 @@ return{
scoreDisp=function(D)return toTime(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)
if P.stat.row<400 then return end
if P.stat.dig<400 then return end
local T=P.stat.time
return
T<=540 and 5 or