欢迎加入放置江湖BWIKI交流群:729759133
为了让整个BWIKI攻略显得更加的专业、完整以及统一,
我们特意在此发起攻略的有奖征集活动。编辑帮助:目录BWIKI反馈留言板

全站通知:

模块:No globals

来自放置江湖WIKI_BWIKI_哔哩哔哩
跳到导航 跳到搜索

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

local mt = getmetatable(_G) or {}
function mt.__index (t, k)
	if k ~= 'arg' then
		error('Tried to read nil global ' .. tostring(k), 2)
	end
	return nil
end
function mt.__newindex(t, k, v)
	if k ~= 'arg' then
		error('Tried to write global ' .. tostring(k), 2)
	end
	rawset(t, k, v)
end
setmetatable(_G, mt)