add toolranks support for crystal sword

This commit is contained in:
TenPlus1 2018-07-25 20:07:23 +01:00
parent 5947b2d16e
commit 1b8b6cb286

View File

@ -253,4 +253,9 @@ minetest.override_item("ethereal:shovel_crystal", {
original_description = "Crystal Shovel", original_description = "Crystal Shovel",
description = toolranks.create_description("Crystal Shovel", 0, 1), description = toolranks.create_description("Crystal Shovel", 0, 1),
after_use = toolranks.new_afteruse}) after_use = toolranks.new_afteruse})
minetest.override_item("ethereal:sword_crystal", {
original_description = "Crystal Sword",
description = toolranks.create_description("Crystal Sword", 0, 1),
after_use = toolranks.new_afteruse})
end end