Skip to content
Snippets Groups Projects
Commit 9101b680 authored by Perttu Ahola's avatar Perttu Ahola
Browse files

Do not error() on digprop_* calls but print a warning

parent d24c56fd
No related branches found
No related tags found
No related merge requests found
......@@ -753,7 +753,8 @@ minetest.register_item(":", {
-- Default material types
--
function digprop_err()
error("The minetest.digprop_* functions are obsolete and need to be replaced by item groups.")
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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment