Merge pull request #10 from louisroyer/fix9

Fix crash when using hoe but not on a node
This commit is contained in:
Louis Royer 2020-08-19 15:16:27 +02:00 committed by GitHub
commit 4f2c388432
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

@ -14,6 +14,10 @@ local function add_hoe(material)
minetest.override_item(name, { minetest.override_item(name, {
-- we also want hoes to increase dugnodes when farming soil -- we also want hoes to increase dugnodes when farming soil
on_use = function(itemstack, user, pointed_thing, uses) 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) local under = minetest.get_node(pointed_thing.under)
-- get origin wear -- get origin wear
local wear = itemstack:get_wear() local wear = itemstack:get_wear()

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