挖掘模式rank判定条件错误

This commit is contained in:
MrZ626
2020-10-06 21:32:14 +08:00
parent 4cb2dbad3b
commit 64374aed81
3 changed files with 3 additions and 3 deletions

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<10 then return end
if P.stat.row<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<10 then return end
if P.stat.row<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<10 then return end
if P.stat.row<400 then return end
local T=P.stat.time
return
T<=540 and 5 or