556
个编辑
更改
无编辑摘要
local date_col = 6
-- .0 => .4999499, .5 => .9999999
function expand_from_old_SR_time(score)
if score:len() == 6 then
if score:sub(-1) == '0' then
score = score:sub(1, -2) .. '4999499'
elseif score:sub(-1) == '5' then
score = score:sub(1, -2) .. '9999999'
end
end