1
0
mirror of https://github.com/minetest/minetest_game.git synced 2025-06-29 21:30:26 +02:00

Fire: Add flint and steel sound

This commit is contained in:
paramat
2016-10-23 06:16:19 +01:00
parent 9b62d8a504
commit f7325d26b6
4 changed files with 11 additions and 3 deletions

View File

@ -87,8 +87,12 @@ minetest.register_tool("fire:flint_and_steel", {
description = "Flint and Steel",
inventory_image = "fire_flint_steel.png",
on_use = function(itemstack, user, pointed_thing)
itemstack:add_wear(1000)
local pt = pointed_thing
minetest.sound_play(
"fire_flint_and_steel",
{pos = pt.above, gain = 0.8, max_hear_distance = 8}
)
itemstack:add_wear(1000)
if pt.type == "node" then
local node_under = minetest.get_node(pt.under).name
local is_coalblock = node_under == "default:coalblock"