Bug fix with toolranks support

This commit is contained in:
ChimneySwift 2017-11-18 16:55:08 +10:00 committed by GitHub
parent 029ff677a3
commit 9fcfe16130
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -367,15 +367,15 @@ if minetest.get_modpath("toolranks") then
original_description = "Lava Sword",
description = toolranks.create_description("Lava Sword", 0, 1),
after_use = toolranks.new_afteruse})
inetest.override_item("lavastuff:pick", {
minetest.override_item("lavastuff:pick", {
original_description = "Lava Pickaxe",
description = toolranks.create_description("Lava Pickaxe", 0, 1),
after_use = toolranks.new_afteruse})
inetest.override_item("lavastuff:axe", {
minetest.override_item("lavastuff:axe", {
original_description = "Lava Axe",
description = toolranks.create_description("Lava Axe", 0, 1),
after_use = toolranks.new_afteruse})
inetest.override_item("lavastuff:shovel", {
minetest.override_item("lavastuff:shovel", {
original_description = "Lava Shovel",
description = toolranks.create_description("Lava Shovel", 0, 1),
after_use = toolranks.new_afteruse})