Log Decay

master
wintersknight94 2022-01-25 22:26:09 -06:00 committed by GitHub
parent 1ccc579bc7
commit 35e5bdaae1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 5 deletions

View File

@ -6,12 +6,11 @@ local modname = minetest.get_current_modname()
-- ================================================== --
minetest.register_abm({
label = "log decay",
interval = 1,
chance = 2,
interval = 100,
chance = 20,
nodenames = {"nc_tree:log"},
neighbors = {"group:soil","group:moist"},
neighbors = {"group:water","group:fungal"},
action = function(pos)
nodecore.sound_play("nc_api_craft_hiss", {gain = 0.02, pos = pos})
return minetest.set_node(pos, {name = modname .. ":decayed_log"})
end
})

View File

@ -11,7 +11,7 @@ include("item_thatch")
include("feature_biomes")
include("feature_blobs")
--include("feature_decay")
include("feature_decay")
include("feature_dungeon")
include("feature_spread")