Paste #4gK -- näytä pelkkänä tekstinä -- uusi tämän pohjalta
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | minetest.env = {} setmetatable(minetest.env, { __index = function(table, key) local func = minetest[key] if type(func) == 'function' then rawset(table, key, function(self, ...) return func(unpack(arg)) end) else rawset(table, key, nil) end return rawget(table, key) end }) |