Fix crash when using hoe but not on a node

Fix #9.
master
Louis 2020-08-19 15:12:08 +02:00
parent 82546675f1
commit 7e914caa59
2 changed files with 5 additions and 1 deletions

View File

@ -14,6 +14,10 @@ local function add_hoe(material)
minetest.override_item(name, {
-- we also want hoes to increase dugnodes when farming soil
on_use = function(itemstack, user, pointed_thing, uses)
-- if no node is pointed, the hoe cannot be used
if pointed_thing.under == nil then
return nil
end
local under = minetest.get_node(pointed_thing.under)
-- get origin wear
local wear = itemstack:get_wear()

View File

@ -3,7 +3,7 @@ local MP = minetest.get_modpath("toolranks_extras")
toolranks_extras = {}
-- mod information
toolranks_extras.mod = {version = "1.4.1", author = "Louis Royer"}
toolranks_extras.mod = {version = "1.4.2", author = "Louis Royer"}
-- settings
toolranks_extras.settings = {