mirror of
https://github.com/minetest/minetest.git
synced 2024-11-04 14:53:45 +01:00
ab43377577
On the lua side, notably minetest.env:<function>(<args>) should now be replaced by minetest.<function>(<args>). The old way is and will stay supported for a long time. Also: Update and clean up lua_api.txt (by celeron55) Move EnvRef to lua and remove add_rat and add_firefly (by kahrl) Add separate src/util/CMakeLists.txt, other minor fixes (by kahrl)
49 lines
1.4 KiB
Lua
49 lines
1.4 KiB
Lua
-- Minetest: builtin/deprecated.lua
|
|
|
|
--
|
|
-- Default material types
|
|
--
|
|
function digprop_err()
|
|
minetest.log("info", debug.traceback())
|
|
minetest.log("info", "WARNING: The minetest.digprop_* functions are obsolete and need to be replaced by item groups.")
|
|
end
|
|
|
|
minetest.digprop_constanttime = digprop_err
|
|
minetest.digprop_stonelike = digprop_err
|
|
minetest.digprop_dirtlike = digprop_err
|
|
minetest.digprop_gravellike = digprop_err
|
|
minetest.digprop_woodlike = digprop_err
|
|
minetest.digprop_leaveslike = digprop_err
|
|
minetest.digprop_glasslike = digprop_err
|
|
|
|
minetest.node_metadata_inventory_move_allow_all = function()
|
|
minetest.log("info", "WARNING: minetest.node_metadata_inventory_move_allow_all is obsolete and does nothing.")
|
|
end
|
|
|
|
minetest.add_to_creative_inventory = function(itemstring)
|
|
minetest.log('info', "WARNING: minetest.add_to_creative_inventory: This function is deprecated and does nothing.")
|
|
end
|
|
|
|
--
|
|
-- EnvRef
|
|
--
|
|
minetest.env = {}
|
|
local envref_deprecation_message_printed = false
|
|
setmetatable(minetest.env, {
|
|
__index = function(table, key)
|
|
if not envref_deprecation_message_printed then
|
|
minetest.log("info", "WARNING: minetest.env:[...] is deprecated and should be replaced with minetest.[...]")
|
|
envref_deprecation_message_printed = true
|
|
end
|
|
local func = minetest[key]
|
|
if type(func) == "function" then
|
|
rawset(table, key, function(self, ...)
|
|
return func(unpack({...}))
|
|
end)
|
|
else
|
|
rawset(table, key, nil)
|
|
end
|
|
return rawget(table, key)
|
|
end
|
|
})
|