mirror of
https://github.com/minetest-mods/technic.git
synced 2024-11-11 13:00:29 +01:00
Fix crash when using the template tool
This commit is contained in:
parent
7dc21cec40
commit
061d1a3ab4
|
@ -802,7 +802,7 @@ minetest.register_tool("technic:template_tool",{
|
||||||
inventory_image = "technic_template_tool.png",
|
inventory_image = "technic_template_tool.png",
|
||||||
on_use = function(itemstack, puncher, pointed_thing)
|
on_use = function(itemstack, puncher, pointed_thing)
|
||||||
local pos = pointed_thing.under
|
local pos = pointed_thing.under
|
||||||
if pos == nil or (minetest.is_protected and minetest.is_protected(pos, placer:get_player_name())) then
|
if pos == nil or (minetest.is_protected and minetest.is_protected(pos, puncher:get_player_name())) then
|
||||||
return nil
|
return nil
|
||||||
end
|
end
|
||||||
local node = minetest.get_node(pos)
|
local node = minetest.get_node(pos)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user