欢迎您来到《圣歌德嘉的晚钟》BWIKI,本站旨在为广大晚钟玩家提供内容最多、范围最广的晚钟百科。

本WIKI除首页等重要页面以外的页面编辑权限均开放,请各位放心大胆的共建WIKI。欢迎各位加入本站的BWIKI编辑组,QQ群号为:515897153。

全站通知:

模块: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)