Minecraft Wiki
Registre-se
Advertisement
[criar | histórico | purgar]Documentação
Este module não tem documentação. Se você souber como usar este module, por favor crie.
local mt = getmetatable(_G) or {}
function mt.__index (t, k)
	if k ~= 'arg' then
		-- perf optimization here and below: do not load Module:TNT unless there is an error
		error("Erro", 2)
	end
	return nil
end
function mt.__newindex(t, k, v)
	if k ~= 'arg' then
		error("Erro", 2)
	end
	rawset(t, k, v)
end
setmetatable(_G, mt)
Advertisement