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:
4
soil.lua
4
soil.lua
@@ -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
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user