1
0
mirror of https://codeberg.org/tenplus1/farming.git synced 2025-11-11 03:05:25 +01:00

increase straw/weed bale burn time, tweak weed timing and position.

This commit is contained in:
tenplus1
2025-11-09 14:45:42 +00:00
parent 2d57206023
commit 643a22e21f
2 changed files with 4 additions and 4 deletions

View File

@@ -203,7 +203,7 @@ if core.settings:get_bool("farming_disable_weeds") ~= true then
nodenames = {"group:field"},
neighbors = {"air"},
interval = 50,
chance = 35,
chance = 45,
catch_up = false,
action = function(pos, node)
@@ -215,7 +215,7 @@ if core.settings:get_bool("farming_disable_weeds") ~= true then
pos.y = pos.y + 1
if core.get_node(pos).name == "air" then
core.set_node(pos, {name = "farming:weed", param2 = 2})
core.set_node(pos, {name = "farming:weed", param2 = 10})
end
end
})