From db7e59f4725a9516314ea0148d1bcaf250280e32 Mon Sep 17 00:00:00 2001 From: sfan5 Date: Mon, 16 Dec 2019 19:13:43 +0100 Subject: Correct documentation around minetest.item_place The code that calls minetest.item_place_object was removed in 2013 in commit fc61c8809b9a1d47d9f117446764107a56cec956. --- builtin/game/item.lua | 2 ++ 1 file changed, 2 insertions(+) (limited to 'builtin/game/item.lua') diff --git a/builtin/game/item.lua b/builtin/game/item.lua index 8041d557e..00c1912fc 100644 --- a/builtin/game/item.lua +++ b/builtin/game/item.lua @@ -398,6 +398,7 @@ function core.item_place_node(itemstack, placer, pointed_thing, param2, return itemstack, true end +-- deprecated, item_place does not call this function core.item_place_object(itemstack, placer, pointed_thing) local pos = core.get_pointed_thing_position(pointed_thing, true) if pos ~= nil then @@ -419,6 +420,7 @@ function core.item_place(itemstack, placer, pointed_thing, param2) end end + -- Place if node, otherwise do nothing if itemstack:get_definition().type == "node" then return core.item_place_node(itemstack, placer, pointed_thing, param2) end -- cgit v1.2.3