forked from Mineclonia/Mineclonia
Break sounds for flint and steel and fishing rod
This commit is contained in:
parent
f18ffce540
commit
3d2d31896f
|
@ -1 +1,2 @@
|
|||
mcl_core
|
||||
mcl_sounds
|
||||
|
|
|
@ -6,6 +6,7 @@ minetest.register_tool("mcl_fire:flint_and_steel", {
|
|||
stack_max = 1,
|
||||
groups = { tool = 1 },
|
||||
on_use = function(itemstack, user, pointed_thing)
|
||||
local idef = itemstack:get_definition()
|
||||
if pointed_thing.type == "node" then
|
||||
if minetest.get_node(pointed_thing.under).name == "mcl_tnt:tnt" then
|
||||
tnt.ignite(pointed_thing.under)
|
||||
|
@ -19,8 +20,12 @@ minetest.register_tool("mcl_fire:flint_and_steel", {
|
|||
end
|
||||
end
|
||||
end
|
||||
if itemstack:get_count() == 0 and idef.sound and idef.sound.breaks then
|
||||
minetest.sound_play(idef.sound.breaks, {pos=user:getpos(), gain=0.5})
|
||||
end
|
||||
return itemstack
|
||||
end,
|
||||
sound = { breaks = "default_tool_breaks" },
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
|
|
|
@ -1 +1,2 @@
|
|||
mcl_core
|
||||
mcl_sounds
|
||||
|
|
|
@ -77,7 +77,11 @@ local go_fishing = function(itemstack, user, pointed_thing)
|
|||
inv:add_item("main", item)
|
||||
end
|
||||
if not minetest.setting_getbool("creative_mode") then
|
||||
local idef = itemstack:get_definition()
|
||||
itemstack:add_wear(65535/65) -- 65 uses
|
||||
if itemstack:get_count() == 0 and idef.sound and idef.sound.breaks then
|
||||
minetest.sound_play(idef.sound.breaks, {pos=pointed_thing.above, gain=0.5})
|
||||
end
|
||||
end
|
||||
return itemstack
|
||||
end
|
||||
|
@ -93,6 +97,7 @@ minetest.register_tool("mcl_fishing:fishing_rod", {
|
|||
stack_max = 1,
|
||||
liquids_pointable = true,
|
||||
on_place = go_fishing,
|
||||
sound = { breaks = "default_tool_breaks" },
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
|
|
Loading…
Reference in New Issue