模块:Torna

来自乐园数据管理室

此模块的文档可以在模块:Torna/doc创建

local p = {}

function p.checkTitle()
  local currentTitle = mw.title.getCurrentTitle()
  if "黄金之国" == mw.ustring.sub(tostring(currentTitle), 1, 4) then
    return true
  end
  return false
end

return p