diff --git a/parts/modes/dig_eff_100l.lua b/parts/modes/dig_eff_100l.lua index 3fdb9872..3b016f5c 100644 --- a/parts/modes/dig_eff_100l.lua +++ b/parts/modes/dig_eff_100l.lua @@ -4,8 +4,8 @@ return{ eventSet='dig_100l', bg='bg2',bgm='way', }, - score=function(P)return{P.stat.time,P.stat.piece}end, - scoreDisp=function(D)return STRING.time(D[1]).." "..D[2].." Pieces"end, + score=function(P)return{P.stat.piece,P.stat.time}end, + scoreDisp=function(D)return D[1].." Pieces "..STRING.time(D[2]) end, comp=function(a,b)return a[1]