VoxelEngine/res/scripts/post_content.lua
2024-11-26 11:01:29 +03:00

13 lines
246 B
Lua

function make_read_only(t)
setmetatable(t, {
__newindex = function()
error("table is read-only")
end
})
end
make_read_only(block.properties)
for k,v in pairs(block.properties) do
make_read_only(v)
end