查看“模块:Standings”的源代码
因为以下原因,您没有权限编辑本页:
您可以查看与复制此页面的源代码。
local p = {} --p stands for package
local mode_col = 1
local level_col = 2
local score_col = 3
local name_col = 4
local video_col = 5
local date_col = 6
-- .0 => .4999, .5 => .9999
function expand_from_old_SR_time(score)
if score:len() == 6 then
if score:sub(-1) == '0' then
score = score:sub(1, -2) .. '4999'
elseif score:sub(-1) == '5' then
score = score:sub(1, -2) .. '9999'
end
end
return score
end
000
1:0
该页面使用的模板:
返回至模块:Standings。