diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2016-12-04 10:58:20 +0000 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2016-12-04 10:58:20 +0000 |
commit | f34b9b00c6c1e025754a71536ffd1b112cbce874 (patch) | |
tree | fbda08df5d123cd55be0bc48041634cd8f48b3ff /plantlife.lua | |
parent | 8309e6a777b15a5f9b324c93ff9d89045ebc0eb5 (diff) |
few recipe changes (thanks RQWorldblender)
Diffstat (limited to 'plantlife.lua')
-rw-r--r-- | plantlife.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/plantlife.lua b/plantlife.lua index 98ba936..bf86d5a 100644 --- a/plantlife.lua +++ b/plantlife.lua @@ -219,12 +219,14 @@ function ethereal.add_moss(typ, descr, texture, receipe_item) description = S(descr .. " Moss"), tiles = {texture}, groups = {crumbly = 3}, - sounds = default.node_sound_dirt_defaults() + sounds = default.node_sound_dirt_defaults({ + footstep = {name = "default_grass_footstep", gain = 0.4}}) }) minetest.register_craft({ + type = "shapeless", output = "ethereal:"..typ.."_moss", - recipe = {{"default:dirt", receipe_item }} + recipe = {"default:dirt", receipe_item } }) end |