Add files via upload

This commit is contained in:
Diablosxm 2023-05-20 22:28:36 -04:00 committed by GitHub
parent 854c37751b
commit add8d74323
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 6 deletions

View File

@ -19,7 +19,6 @@
local S = nether.get_translator
minetest.register_tool("nether:pick_nether", {
description = S("Nether Pickaxe\nWell suited for mining netherrack"),
_doc_items_longdesc = S("Uniquely suited for mining netherrack, with minimal wear when doing so. Blunts quickly on other materials."),
@ -35,7 +34,6 @@ minetest.register_tool("nether:pick_nether", {
sound = {breaks = "default_tool_breaks"},
groups = {pickaxe = 1},
original_description = toolranks_loaded and pickaxe_desc or nil,
after_use = function(itemstack, user, node, digparams)
local wearDivisor = 1
local nodeDef = minetest.registered_nodes[node.name]
@ -363,8 +361,8 @@ minetest.register_tool("nether:lightstaff_eternal", {
end
})
if minetest.get_modpath("toolranks") then
-- toolranks.add_tool("nether:pick_nether"),
toolranks.add_tool("nether:axe_nether"),
toolranks.add_tool("nether:shovel_nether"),
toolranks.add_tool("nether:sword_nether")
-- toolranks.add_tool("nether:pick_nether")
toolranks.add_tool("nether:shovel_nether")
toolranks.add_tool("nether:axe_nether")
toolranks.add_tool("nether:sword_nether")
end