mirror of
https://github.com/minetest-mods/moreores.git
synced 2024-12-22 05:42:30 +01:00
whitespace fixes
This commit is contained in:
parent
43cc55dbd2
commit
e7693d8206
24
init.lua
24
init.lua
@ -38,21 +38,21 @@ local function hoe_on_use(itemstack, user, pointed_thing, uses)
|
|||||||
if pt.type ~= "node" then
|
if pt.type ~= "node" then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local under = minetest.get_node(pt.under)
|
local under = minetest.get_node(pt.under)
|
||||||
local pos = {x = pt.under.x, y = pt.under.y + 1, z = pt.under.z}
|
local pos = {x = pt.under.x, y = pt.under.y + 1, z = pt.under.z}
|
||||||
local above = minetest.get_node(pos)
|
local above = minetest.get_node(pos)
|
||||||
|
|
||||||
-- Return if any of the nodes is not registered:
|
-- Return if any of the nodes is not registered:
|
||||||
if not minetest.registered_nodes[under.name] then return end
|
if not minetest.registered_nodes[under.name] then return end
|
||||||
if not minetest.registered_nodes[above.name] then return end
|
if not minetest.registered_nodes[above.name] then return end
|
||||||
|
|
||||||
-- Check if the node above the pointed thing is air:
|
-- Check if the node above the pointed thing is air:
|
||||||
if above.name ~= "air" then return end
|
if above.name ~= "air" then return end
|
||||||
|
|
||||||
-- Check if pointing at dirt:
|
-- Check if pointing at dirt:
|
||||||
if minetest.get_item_group(under.name, "soil") ~= 1 then return end
|
if minetest.get_item_group(under.name, "soil") ~= 1 then return end
|
||||||
|
|
||||||
-- Turn the node into soil, wear out item and play sound:
|
-- Turn the node into soil, wear out item and play sound:
|
||||||
minetest.set_node(pt.under, {name ="farming:soil"})
|
minetest.set_node(pt.under, {name ="farming:soil"})
|
||||||
minetest.sound_play("default_dig_crumbly", {pos = pt.under, gain = 0.5})
|
minetest.sound_play("default_dig_crumbly", {pos = pt.under, gain = 0.5})
|
||||||
@ -149,7 +149,7 @@ local function add_ore(modname, description, mineral_name, oredef)
|
|||||||
})
|
})
|
||||||
minetest.register_alias(mineral_name .. "_ingot", ingot)
|
minetest.register_alias(mineral_name .. "_ingot", ingot)
|
||||||
end
|
end
|
||||||
|
|
||||||
if oredef.makes.chest then
|
if oredef.makes.chest then
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
output = "default:chest_locked",
|
output = "default:chest_locked",
|
||||||
@ -163,11 +163,11 @@ local function add_ore(modname, description, mineral_name, oredef)
|
|||||||
recipe = get_recipe(ingot, "lockedchest")
|
recipe = get_recipe(ingot, "lockedchest")
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
oredef.oredef.ore_type = "scatter"
|
oredef.oredef.ore_type = "scatter"
|
||||||
oredef.oredef.ore = modname .. ":mineral_" .. mineral_name
|
oredef.oredef.ore = modname .. ":mineral_" .. mineral_name
|
||||||
oredef.oredef.wherein = "default:stone"
|
oredef.oredef.wherein = "default:stone"
|
||||||
|
|
||||||
minetest.register_ore(oredef.oredef)
|
minetest.register_ore(oredef.oredef)
|
||||||
|
|
||||||
for tool_name, tooldef in pairs(oredef.tools) do
|
for tool_name, tooldef in pairs(oredef.tools) do
|
||||||
@ -179,19 +179,19 @@ local function add_ore(modname, description, mineral_name, oredef)
|
|||||||
groupcaps = tooldef
|
groupcaps = tooldef
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if tool_name == "sword" then
|
if tool_name == "sword" then
|
||||||
tdef.tool_capabilities.full_punch_interval = oredef.full_punch_interval
|
tdef.tool_capabilities.full_punch_interval = oredef.full_punch_interval
|
||||||
tdef.tool_capabilities.damage_groups = oredef.damage_groups
|
tdef.tool_capabilities.damage_groups = oredef.damage_groups
|
||||||
tdef.description = S("%s Sword"):format(S(description))
|
tdef.description = S("%s Sword"):format(S(description))
|
||||||
end
|
end
|
||||||
|
|
||||||
if tool_name == "pick" then
|
if tool_name == "pick" then
|
||||||
tdef.tool_capabilities.full_punch_interval = oredef.full_punch_interval
|
tdef.tool_capabilities.full_punch_interval = oredef.full_punch_interval
|
||||||
tdef.tool_capabilities.damage_groups = oredef.damage_groups
|
tdef.tool_capabilities.damage_groups = oredef.damage_groups
|
||||||
tdef.description = S("%s Pickaxe"):format(S(description))
|
tdef.description = S("%s Pickaxe"):format(S(description))
|
||||||
end
|
end
|
||||||
|
|
||||||
if tool_name == "axe" then
|
if tool_name == "axe" then
|
||||||
tdef.tool_capabilities.full_punch_interval = oredef.full_punch_interval
|
tdef.tool_capabilities.full_punch_interval = oredef.full_punch_interval
|
||||||
tdef.tool_capabilities.damage_groups = oredef.damage_groups
|
tdef.tool_capabilities.damage_groups = oredef.damage_groups
|
||||||
@ -203,7 +203,7 @@ local function add_ore(modname, description, mineral_name, oredef)
|
|||||||
tdef.tool_capabilities.damage_groups = oredef.damage_groups
|
tdef.tool_capabilities.damage_groups = oredef.damage_groups
|
||||||
tdef.description = S("%s Shovel"):format(S(description))
|
tdef.description = S("%s Shovel"):format(S(description))
|
||||||
end
|
end
|
||||||
|
|
||||||
if tool_name == "hoe" then
|
if tool_name == "hoe" then
|
||||||
tdef.description = S("%s Hoe"):format(S(description))
|
tdef.description = S("%s Hoe"):format(S(description))
|
||||||
local uses = tooldef.uses
|
local uses = tooldef.uses
|
||||||
|
Loading…
Reference in New Issue
Block a user