give all items respective sounds.
This commit is contained in:
parent
f0456d79ce
commit
d82f603676
BIN
extras/original_sounds/wood/344149__brokenphono__thump-001.wav
Normal file
BIN
extras/original_sounds/wood/344149__brokenphono__thump-001.wav
Normal file
Binary file not shown.
Binary file not shown.
@ -380,7 +380,7 @@ minetest.register_node("core:pine_log", {
|
||||
is_ground_content = false,
|
||||
groups = {tree=1, choppy=3, flammable=2, solid=1},
|
||||
on_place = minetest.rotate_node,
|
||||
sounds = mcore.sounds_wood,
|
||||
sounds = mcore.sound_wood,
|
||||
})
|
||||
|
||||
minetest.register_node("core:pine_log_grassy", {
|
||||
@ -390,7 +390,7 @@ minetest.register_node("core:pine_log_grassy", {
|
||||
is_ground_content = false,
|
||||
groups = {tree=1, choppy=3, flammable=2, solid=1, nodec=1},
|
||||
on_place = minetest.rotate_node,
|
||||
sounds = mcore.sounds_wood,
|
||||
sounds = mcore.sound_wood,
|
||||
})
|
||||
|
||||
minetest.register_node("core:pine_needles", {
|
||||
@ -416,7 +416,7 @@ minetest.register_node("core:pine_needles", {
|
||||
}
|
||||
},
|
||||
after_place_node = mcore.after_place_leaves,
|
||||
sounds = mcore.sounds_plants,
|
||||
sounds = mcore.sound_plants,
|
||||
})
|
||||
|
||||
minetest.register_node("core:pine_needles_snowy", {
|
||||
@ -442,14 +442,14 @@ minetest.register_node("core:pine_needles_snowy", {
|
||||
}
|
||||
},
|
||||
after_place_node = mcore.after_place_leaves,
|
||||
sounds = mcore.sounds_plants,
|
||||
sounds = mcore.sound_plants,
|
||||
})
|
||||
|
||||
minetest.register_node("core:pine_planks", {
|
||||
description = "Pine Planks",
|
||||
tiles = {"core_pine_planks.png"},
|
||||
groups = {choppy=3, flammable=2, solid=1, planks=1},
|
||||
sounds = mcore.sounds_plants,
|
||||
sounds = mcore.sound_wood,
|
||||
})
|
||||
|
||||
-- oak
|
||||
@ -461,7 +461,7 @@ minetest.register_node("core:oak_log", {
|
||||
is_ground_content = false,
|
||||
groups = {tree=1, choppy=3, flammable=2, solid=1},
|
||||
on_place = minetest.rotate_node,
|
||||
sounds = mcore.sounds_wood,
|
||||
sounds = mcore.sound_wood,
|
||||
})
|
||||
|
||||
minetest.register_node("core:oak_log_grassy", {
|
||||
@ -471,7 +471,7 @@ minetest.register_node("core:oak_log_grassy", {
|
||||
is_ground_content = false,
|
||||
groups = {tree=1, choppy=3, flammable=2, solid=1, nodec=1},
|
||||
on_place = minetest.rotate_node,
|
||||
sounds = mcore.sounds_wood,
|
||||
sounds = mcore.sound_wood,
|
||||
})
|
||||
|
||||
minetest.register_node("core:oak_leaves", {
|
||||
@ -497,14 +497,14 @@ minetest.register_node("core:oak_leaves", {
|
||||
}
|
||||
},
|
||||
after_place_node = mcore.after_place_leaves,
|
||||
sounds = mcore.sounds_plants,
|
||||
sounds = mcore.sound_plants,
|
||||
})
|
||||
|
||||
minetest.register_node("core:oak_planks", {
|
||||
description = "Oak Planks",
|
||||
tiles = {"core_oak_planks.png"},
|
||||
groups = {choppy=3, flammable=2, solid=1, planks=1},
|
||||
sounds = mcore.sounds_wood,
|
||||
sounds = mcore.sound_wood,
|
||||
})
|
||||
|
||||
-- cherry
|
||||
@ -516,7 +516,7 @@ minetest.register_node("core:cherry_log", {
|
||||
is_ground_content = false,
|
||||
groups = {tree=1, choppy=3, flammable=2, solid=1},
|
||||
on_place = minetest.rotate_node,
|
||||
sounds = mcore.sounds_wood,
|
||||
sounds = mcore.sound_wood,
|
||||
})
|
||||
|
||||
minetest.register_node("core:cherry_log_grassy", {
|
||||
@ -526,7 +526,7 @@ minetest.register_node("core:cherry_log_grassy", {
|
||||
is_ground_content = false,
|
||||
groups = {tree=1, choppy=3, flammable=2, solid=1, nodec=1},
|
||||
on_place = minetest.rotate_node,
|
||||
sounds = mcore.sounds_wood,
|
||||
sounds = mcore.sound_wood,
|
||||
})
|
||||
|
||||
minetest.register_node("core:cherry_leaves", {
|
||||
@ -552,14 +552,14 @@ minetest.register_node("core:cherry_leaves", {
|
||||
}
|
||||
},
|
||||
after_place_node = mcore.after_place_leaves,
|
||||
sounds = mcore.sounds_plants,
|
||||
sounds = mcore.sound_plants,
|
||||
})
|
||||
|
||||
minetest.register_node("core:cherry_planks", {
|
||||
description = "Cherry Planks",
|
||||
tiles = {"core_cherry_planks.png"},
|
||||
groups = {choppy=3, flammable=2, solid=1, planks=1},
|
||||
sounds = mcore.sounds_wood,
|
||||
sounds = mcore.sound_wood,
|
||||
})
|
||||
|
||||
minetest.register_node("core:fallen_cherry_leaves", {
|
||||
@ -576,7 +576,7 @@ minetest.register_node("core:fallen_cherry_leaves", {
|
||||
type = "fixed",
|
||||
fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5},
|
||||
},
|
||||
sounds = mcore.sounds_plants,
|
||||
sounds = mcore.sound_plants,
|
||||
})
|
||||
|
||||
-- birch
|
||||
@ -588,7 +588,7 @@ minetest.register_node("core:birch_log", {
|
||||
is_ground_content = false,
|
||||
groups = {tree=1, choppy=3, flammable=2, solid=1},
|
||||
on_place = minetest.rotate_node,
|
||||
sounds = mcore.sounds_wood,
|
||||
sounds = mcore.sound_wood,
|
||||
})
|
||||
|
||||
minetest.register_node("core:birch_log_grassy", {
|
||||
@ -598,7 +598,7 @@ minetest.register_node("core:birch_log_grassy", {
|
||||
is_ground_content = false,
|
||||
groups = {tree=1, choppy=3, flammable=2, solid=1, nodec=1},
|
||||
on_place = minetest.rotate_node,
|
||||
sounds = mcore.sounds_wood,
|
||||
sounds = mcore.sound_wood,
|
||||
})
|
||||
|
||||
minetest.register_node("core:birch_leaves", {
|
||||
@ -624,14 +624,14 @@ minetest.register_node("core:birch_leaves", {
|
||||
}
|
||||
},
|
||||
after_place_node = mcore.after_place_leaves,
|
||||
sounds = mcore.sounds_plants,
|
||||
sounds = mcore.sound_plants,
|
||||
})
|
||||
|
||||
minetest.register_node("core:birch_planks", {
|
||||
description = "Birch Planks",
|
||||
tiles = {"core_birch_planks.png"},
|
||||
groups = {choppy=3, flammable=2, solid=1, planks=1},
|
||||
sounds = mcore.sounds_wood,
|
||||
sounds = mcore.sound_wood,
|
||||
})
|
||||
|
||||
-- saplings
|
||||
@ -644,7 +644,7 @@ minetest.register_node("core:oak_sapling", {
|
||||
waving = 1,
|
||||
walkable = false,
|
||||
groups = {snappy=3, flammable=2},
|
||||
sounds = mcore.sounds_plants,
|
||||
sounds = mcore.sound_plants,
|
||||
})
|
||||
|
||||
minetest.register_node("core:pine_sapling", {
|
||||
@ -655,7 +655,7 @@ minetest.register_node("core:pine_sapling", {
|
||||
waving = 1,
|
||||
walkable = false,
|
||||
groups = {snappy=3, flammable=2},
|
||||
sounds = mcore.sounds_plants,
|
||||
sounds = mcore.sound_plants,
|
||||
})
|
||||
|
||||
minetest.register_node("core:birch_sapling", {
|
||||
@ -666,7 +666,7 @@ minetest.register_node("core:birch_sapling", {
|
||||
waving = 1,
|
||||
walkable = false,
|
||||
groups = {snappy=3, flammable=2},
|
||||
sounds = mcore.sounds_plants,
|
||||
sounds = mcore.sound_plants,
|
||||
})
|
||||
|
||||
minetest.register_node("core:cherry_sapling", {
|
||||
@ -677,7 +677,7 @@ minetest.register_node("core:cherry_sapling", {
|
||||
waving = 1,
|
||||
walkable = false,
|
||||
groups = {snappy=3, flammable=2},
|
||||
sounds = mcore.sounds_plants,
|
||||
sounds = mcore.sound_plants,
|
||||
})
|
||||
|
||||
|
||||
@ -693,7 +693,7 @@ minetest.register_node("core:cactus", {
|
||||
paramtype = "light",
|
||||
mesh = "core_cactus.b3d",
|
||||
groups = {choppy=3, flammable=2},
|
||||
sounds = mcore.sounds_wood,
|
||||
sounds = mcore.sound_wood,
|
||||
})
|
||||
|
||||
minetest.register_node("core:grass_1", {
|
||||
@ -712,7 +712,7 @@ minetest.register_node("core:grass_1", {
|
||||
type = "fixed",
|
||||
fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5},
|
||||
},
|
||||
sounds = mcore.sounds_plants,
|
||||
sounds = mcore.sound_plants,
|
||||
on_place = function(itemstack, placer, pointed_thing)
|
||||
local nname = "core:grass_" .. math.random(1,3)
|
||||
local stack = ItemStack(nname)
|
||||
@ -741,7 +741,7 @@ for i=2, 3 do
|
||||
type = "fixed",
|
||||
fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5},
|
||||
},
|
||||
sounds = mcore.sounds_plants,
|
||||
sounds = mcore.sound_plants,
|
||||
})
|
||||
end
|
||||
|
||||
@ -759,7 +759,7 @@ minetest.register_node("core:papyrus", {
|
||||
type = "fixed",
|
||||
fixed = {-0.35, -0.5, -0.35, 0.35, 0.5, 0.35},
|
||||
},
|
||||
sounds = mcore.sounds_plants,
|
||||
sounds = mcore.sound_plants,
|
||||
})
|
||||
|
||||
minetest.register_node("core:bamboo", {
|
||||
@ -775,7 +775,7 @@ minetest.register_node("core:bamboo", {
|
||||
type = "fixed",
|
||||
fixed = {-0.35, -0.5, -0.35, 0.35, 0.5, 0.35},
|
||||
},
|
||||
sounds = mcore.sounds_plants,
|
||||
sounds = mcore.sound_wood,
|
||||
})
|
||||
|
||||
-- ores
|
||||
|
@ -84,8 +84,8 @@ mcore.sound_wood = {
|
||||
|
||||
footstep = {name = "core_wood_footstep", gain = 0.12},
|
||||
|
||||
dug = {name = "core_wood_dug", gain = 0.15},
|
||||
dug = {name = "core_wood_dug", gain = 0.3},
|
||||
|
||||
place = {name = "core_wood_dug", gain = 0.15},
|
||||
place = {name = "core_wood_dug", gain = 0.3},
|
||||
|
||||
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,4 +0,0 @@
|
||||
[ViewState]
|
||||
Mode=
|
||||
Vid=
|
||||
FolderType=Generic
|
@ -48,7 +48,7 @@ local crop_def = {
|
||||
snappy = 3, flammable = 2, plant = 1, attached_node = 1,
|
||||
not_in_creative_inventory = 1, growing = 1
|
||||
},
|
||||
--sounds = default.node_sound_leaves_defaults()
|
||||
sounds = mcore.sound_plants,
|
||||
}
|
||||
|
||||
-- stage 1
|
||||
|
@ -23,7 +23,7 @@ minetest.register_craftitem("farming:beans", {
|
||||
if nodename == "farming:beanpole" then
|
||||
minetest.set_node(pointed_thing.under, {name = "farming:beanpole_1", param2=mcore.options("croplike", false, false, false)})
|
||||
|
||||
minetest.sound_play("default_place_node", {pos = pointed_thing.above, gain = 1.0})
|
||||
--minetest.sound_play("default_place_node", {pos = pointed_thing.above, gain = 1.0})
|
||||
else
|
||||
return
|
||||
end
|
||||
@ -71,7 +71,7 @@ minetest.register_node("farming:beanpole", {
|
||||
drop = "farming:beanpole",
|
||||
selection_box = farming.select,
|
||||
groups = {snappy = 3, flammable = 2, attached_node = 1},
|
||||
--sounds = default.node_sound_leaves_defaults(),
|
||||
sounds = mcore.sound_plants,
|
||||
|
||||
on_place = function(itemstack, placer, pointed_thing)
|
||||
|
||||
@ -195,5 +195,5 @@ minetest.register_node("farming:beanbush", {
|
||||
snappy = 3, flammable = 2, plant = 1, attached_node = 1,
|
||||
not_in_creative_inventory=1
|
||||
},
|
||||
--sounds = default.node_sound_leaves_defaults(),
|
||||
sounds = mcore.sound_plants,
|
||||
})
|
||||
|
@ -42,7 +42,7 @@ local crop_def = {
|
||||
snappy = 3, flammable = 2, plant = 1, attached_node = 1,
|
||||
not_in_creative_inventory = 1, growing = 1
|
||||
},
|
||||
--sounds = default.node_sound_leaves_defaults()
|
||||
sounds = mcore.sound_plants,
|
||||
}
|
||||
|
||||
-- stage 1
|
||||
|
@ -48,7 +48,7 @@ local crop_def = {
|
||||
snappy = 3, flammable = 2, plant = 1, attached_node = 1,
|
||||
not_in_creative_inventory = 1, growing = 1
|
||||
},
|
||||
--sounds = default.node_sound_leaves_defaults()
|
||||
sounds = mcore.sound_plants,
|
||||
}
|
||||
|
||||
|
||||
|
@ -118,7 +118,7 @@ local crop_def = {
|
||||
snappy = 3, flammable = 2, plant = 1, growing = 1,
|
||||
not_in_creative_inventory=1, leafdecay = 1, leafdecay_drop = 1
|
||||
},
|
||||
--sounds = default.node_sound_leaves_defaults()
|
||||
sounds = mcore.sound_plants,
|
||||
}
|
||||
|
||||
-- stage 1
|
||||
|
@ -25,7 +25,7 @@ minetest.register_node("farming:drinking_cup", {
|
||||
fixed = {-0.25, -0.5, -0.25, 0.25, 0.25, 0.25}
|
||||
},
|
||||
groups = {vessel = 1, dig_immediate = 3, attached_node = 1},
|
||||
--sounds = default.node_sound_glass_defaults(),
|
||||
sounds = mcore.sound_plants,
|
||||
})
|
||||
|
||||
minetest.register_craft( {
|
||||
@ -51,7 +51,7 @@ minetest.register_node("farming:coffee_cup", {
|
||||
},
|
||||
groups = {vessel = 1, dig_immediate = 3, attached_node = 1},
|
||||
on_use = minetest.item_eat(2, "farming:drinking_cup"),
|
||||
--sounds = default.node_sound_glass_defaults(),
|
||||
sounds = mcore.sound_plants,
|
||||
})
|
||||
|
||||
minetest.register_craft( {
|
||||
@ -84,7 +84,7 @@ minetest.register_node("farming:coffee_cup_hot", {
|
||||
},
|
||||
groups = {vessel = 1, dig_immediate = 3, attached_node = 1},
|
||||
on_use = minetest.item_eat(3, "farming:drinking_cup"),
|
||||
--sounds = default.node_sound_glass_defaults(),
|
||||
sounds = mcore.sound_plants,
|
||||
})
|
||||
|
||||
-- coffee definition
|
||||
@ -103,7 +103,7 @@ local crop_def = {
|
||||
snappy = 3, flammable = 2, plant = 1, attached_node = 1,
|
||||
not_in_creative_inventory = 1, growing = 1
|
||||
},
|
||||
--sounds = default.node_sound_leaves_defaults()
|
||||
sounds = mcore.sound_plants,
|
||||
}
|
||||
|
||||
-- stage 1
|
||||
|
@ -67,7 +67,7 @@ local crop_def = {
|
||||
snappy = 3, flammable = 2, plant = 1, attached_node = 1,
|
||||
not_in_creative_inventory = 1, growing = 1
|
||||
},
|
||||
--sounds = default.node_sound_leaves_defaults()
|
||||
sounds = mcore.sound_plants,
|
||||
}
|
||||
|
||||
-- stage 1
|
||||
|
@ -53,7 +53,7 @@ local crop_def = {
|
||||
snappy = 3, flammable = 2, plant = 1, attached_node = 1,
|
||||
not_in_creative_inventory = 1, growing = 1
|
||||
},
|
||||
--sounds = default.node_sound_leaves_defaults()
|
||||
sounds = mcore.sound_plants,
|
||||
}
|
||||
|
||||
-- stage 1
|
||||
|
@ -31,7 +31,7 @@ local crop_def = {
|
||||
snappy = 3, flammable = 2, plant = 1, attached_node = 1,
|
||||
not_in_creative_inventory = 1, growing = 1
|
||||
},
|
||||
--sounds = default.node_sound_leaves_defaults()
|
||||
sounds = mcore.sound_plants,
|
||||
}
|
||||
|
||||
-- stage 1
|
||||
|
@ -66,7 +66,7 @@ minetest.register_node("farming:trellis", {
|
||||
drop = "farming:trellis",
|
||||
selection_box = farming.select,
|
||||
groups = {snappy = 3, flammable = 2, attached_node = 1},
|
||||
--sounds = default.node_sound_leaves_defaults(),
|
||||
sounds = mcore.sound_plants,
|
||||
|
||||
on_place = function(itemstack, placer, pointed_thing)
|
||||
|
||||
@ -137,7 +137,7 @@ local crop_def = {
|
||||
snappy = 3, flammable = 3, not_in_creative_inventory = 1,
|
||||
attached_node = 1, growing = 1
|
||||
},
|
||||
--sounds = default.node_sound_leaves_defaults()
|
||||
sounds = mcore.sound_plants,
|
||||
}
|
||||
|
||||
-- stage 1
|
||||
@ -202,5 +202,5 @@ minetest.register_node("farming:grapebush", {
|
||||
snappy = 3, flammable = 2, plant = 1, attached_node = 1,
|
||||
not_in_creative_inventory=1
|
||||
},
|
||||
--sounds = default.node_sound_leaves_defaults(),
|
||||
sounds = mcore.sound_plants,
|
||||
})
|
||||
|
@ -43,7 +43,7 @@ local crop_def = {
|
||||
snappy = 3, flammable = 2, plant = 1, attached_node = 1,
|
||||
not_in_creative_inventory = 1, growing = 1
|
||||
},
|
||||
--sounds = default.node_sound_leaves_defaults()
|
||||
sounds = mcore.sound_plants,
|
||||
}
|
||||
|
||||
-- stage 1
|
||||
|
@ -46,7 +46,7 @@ local crop_def = {
|
||||
snappy = 3, flammable = 2, plant = 1, attached_node = 1,
|
||||
not_in_creative_inventory = 1, growing = 1
|
||||
},
|
||||
--sounds = default.node_sound_leaves_defaults()
|
||||
sounds = mcore.sound_plants,
|
||||
}
|
||||
|
||||
-- stage 1
|
||||
|
@ -22,7 +22,7 @@ minetest.register_node("farming:pumpkin", {
|
||||
{items = {'farming:pumpkin_slice 9'}, rarity = 1},
|
||||
}
|
||||
},
|
||||
--sounds = default.node_sound_wood_defaults(),
|
||||
sounds = mcore.sound_wood,
|
||||
})
|
||||
|
||||
-- pumpkin slice
|
||||
@ -64,7 +64,7 @@ minetest.register_node("farming:jackolantern", {
|
||||
},
|
||||
paramtype2 = "facedir",
|
||||
groups = {choppy = 1, oddly_breakable_by_hand = 1, flammable = 2},
|
||||
--sounds = default.node_sound_wood_defaults(),
|
||||
sounds = mcore.sound_wood,
|
||||
on_punch = function(pos, node, puncher)
|
||||
node.name = "farming:jackolantern_on"
|
||||
minetest.swap_node(pos, node)
|
||||
@ -86,7 +86,7 @@ minetest.register_node("farming:jackolantern_on", {
|
||||
choppy = 1, oddly_breakable_by_hand = 1, flammable = 2,
|
||||
not_in_creative_inventory = 1
|
||||
},
|
||||
--sounds = default.node_sound_wood_defaults(),
|
||||
sounds = mcore.sound_wood,
|
||||
drop = "farming:jackolantern",
|
||||
on_punch = function(pos, node, puncher)
|
||||
node.name = "farming:jackolantern"
|
||||
@ -144,7 +144,7 @@ local crop_def = {
|
||||
snappy = 3, flammable = 2, plant = 1, attached_node = 1,
|
||||
not_in_creative_inventory = 1, growing = 1
|
||||
},
|
||||
--sounds = default.node_sound_leaves_defaults()
|
||||
sounds = mcore.sound_plants,
|
||||
}
|
||||
|
||||
-- stage 1
|
||||
|
@ -43,7 +43,7 @@ local crop_def = {
|
||||
snappy = 3, flammable = 2, plant = 1, attached_node = 1,
|
||||
not_in_creative_inventory = 1, growing = 1
|
||||
},
|
||||
--sounds = default.node_sound_leaves_defaults()
|
||||
sounds = mcore.sound_plants,
|
||||
}
|
||||
|
||||
-- stage 1
|
||||
|
@ -43,7 +43,7 @@ local crop_def = {
|
||||
snappy = 3, flammable = 2, plant = 1, attached_node = 1,
|
||||
not_in_creative_inventory = 1, growing = 1
|
||||
},
|
||||
--sounds = default.node_sound_leaves_defaults()
|
||||
sounds = mcore.sound_plants,
|
||||
}
|
||||
|
||||
-- stage 1
|
||||
|
@ -7,7 +7,7 @@ minetest.register_node("farming:soil", {
|
||||
tiles = {"core_dirt.png^farming_soil.png", "core_dirt.png"},
|
||||
drop = "core:dirt",
|
||||
groups = {crumbly = 3, not_in_creative_inventory = 1, soil = 2},
|
||||
--sounds = default.node_sound_dirt_defaults(),
|
||||
sounds = mcore.sound_gravel,
|
||||
})
|
||||
|
||||
-- wet soil
|
||||
@ -16,7 +16,7 @@ minetest.register_node("farming:soil_wet", {
|
||||
tiles = {"core_dirt.png^farming_soil_wet.png", "core_dirt.png^farming_soil_wet_side.png"},
|
||||
drop = "core:dirt",
|
||||
groups = {crumbly = 3, not_in_creative_inventory = 1, soil = 3},
|
||||
-- sounds = default.node_sound_dirt_defaults(),
|
||||
sounds = mcore.sound_gravel,
|
||||
})
|
||||
|
||||
-- if water near soil then change to wet soil
|
||||
|
@ -12,5 +12,5 @@ minetest.register_craft({
|
||||
type = "cooking",
|
||||
cooktime = 3,
|
||||
output = "farming:sugar 2",
|
||||
recipe = "default:papyrus",
|
||||
recipe = "core:papyrus",
|
||||
})
|
@ -32,7 +32,7 @@ local crop_def = {
|
||||
snappy = 3, flammable = 2, plant = 1, attached_node = 1,
|
||||
not_in_creative_inventory = 1, growing = 1
|
||||
},
|
||||
--sounds = default.node_sound_leaves_defaults()
|
||||
sounds = mcore.sound_plants,
|
||||
}
|
||||
|
||||
-- stage 1
|
||||
|
@ -31,7 +31,7 @@ minetest.register_node("farming:straw", {
|
||||
tiles = {"farming_straw.png"},
|
||||
is_ground_content = false,
|
||||
groups = {snappy = 3, flammable = 4},
|
||||
--sounds = default.node_sound_leaves_defaults(),
|
||||
sounds = mcore.sound_plants,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
|
Loading…
x
Reference in New Issue
Block a user