1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2025-06-28 14:16:06 +02:00

Merged crafting recipes (all finished now)

This commit is contained in:
LeMagnesium
2015-06-11 18:23:44 +02:00
parent 12501fb1cd
commit 91c2ff1215
4 changed files with 547 additions and 397 deletions

View File

@ -152,7 +152,7 @@ minetest.register_abm({
-- Remove flammable nodes and flame
minetest.register_abm({
nodenames = {"fire:basic_flame"},
interval = 1,
interval = 3,
chance = 2,
action = function(p0, node, _, _)
-- If there is water or stuff like that around flame, remove flame
@ -186,3 +186,4 @@ minetest.register_abm({
end
end,
})