forked from VoxeLibre/VoxeLibre
Remove dig_immediate sound
This commit is contained in:
parent
8527d684f4
commit
fa9f081770
|
@ -16,7 +16,6 @@ Mito551 (sounds) (CC BY-SA 3.0):
|
||||||
default_dig_cracky.ogg
|
default_dig_cracky.ogg
|
||||||
default_dig_crumbly.1.ogg
|
default_dig_crumbly.1.ogg
|
||||||
default_dig_crumbly.2.ogg
|
default_dig_crumbly.2.ogg
|
||||||
default_dig_dig_immediate.ogg
|
|
||||||
default_dig_oddly_breakable_by_hand.ogg
|
default_dig_oddly_breakable_by_hand.ogg
|
||||||
default_dug_node.1.ogg
|
default_dug_node.1.ogg
|
||||||
default_dug_node.2.ogg
|
default_dug_node.2.ogg
|
||||||
|
|
Binary file not shown.
|
@ -42,7 +42,7 @@ minetest.register_node("mcl_fire:fire", {
|
||||||
return true
|
return true
|
||||||
end,
|
end,
|
||||||
drop = "",
|
drop = "",
|
||||||
|
sounds = {},
|
||||||
on_construct = function(pos)
|
on_construct = function(pos)
|
||||||
minetest.get_node_timer(pos):start(math.random(30, 60))
|
minetest.get_node_timer(pos):start(math.random(30, 60))
|
||||||
end,
|
end,
|
||||||
|
@ -74,6 +74,7 @@ minetest.register_node("mcl_fire:eternal_fire", {
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
damage_per_second = 1,
|
damage_per_second = 1,
|
||||||
groups = {igniter = 1, dig_immediate = 3, not_in_creative_inventory = 1},
|
groups = {igniter = 1, dig_immediate = 3, not_in_creative_inventory = 1},
|
||||||
|
sounds = {},
|
||||||
drop = "",
|
drop = "",
|
||||||
|
|
||||||
on_blast = function() -- Unaffected by explosions
|
on_blast = function() -- Unaffected by explosions
|
||||||
|
|
Loading…
Reference in New Issue