模块:No globals:修订历史

来自Age Of History 2 Chinese Wiki
跳转至:导航、​搜索

差异选择:选中要对比的修订的单选按钮,然后按Enter键或下面的按钮。
说明:(当前)=与最后修订的差异,(之前)=与上个修订的差异,=小编辑。

2025年6月13日 (星期五)

  • 当前之前 14:282025年6月13日 (五) 14:28 ZAN热评 留言 贡献 317字节 +317 创建页面,内容为“local mt = getmetatable(_G) or {} function mt.__index (t, k) if k ~= 'arg' then error('尝试读取空全局变量:' .. tostring(k), 2) end return nil end function mt.__newindex(t, k, v) if k ~= 'arg' then error('尝试写入全局变量:' .. tostring(k), 2) end rawset(t, k, v) end setmetatable(_G, mt)”