mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2025-03-20 13:02:29 +01:00
Add sponge sounds
This commit is contained in:
@ -1813,6 +1813,7 @@ minetest.register_node("default:sponge", {
|
||||
diggable = true,
|
||||
buildable_to = false,
|
||||
stack_max = 64,
|
||||
sounds = default.node_sound_dirt_defaults(),
|
||||
groups = {snappy=2,choppy=2,oddly_breakable_by_hand=3,flammable=3},
|
||||
on_place = function(itemstack, placer, pointed_thing)
|
||||
local pn = placer:get_player_name()
|
||||
@ -1893,6 +1894,7 @@ minetest.register_node("default:sponge_wet", {
|
||||
diggable = true,
|
||||
buildable_to = false,
|
||||
stack_max = 64,
|
||||
sounds = default.node_sound_dirt_defaults(),
|
||||
groups = {snappy=2,choppy=2,oddly_breakable_by_hand=3},
|
||||
})
|
||||
|
||||
|
Reference in New Issue
Block a user