1
0
mirror of https://codeberg.org/tenplus1/farming.git synced 2025-11-10 10:45:26 +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

@@ -1436,9 +1436,9 @@ core.register_craft({output = a.dye_yellow, recipe = {{"group:food_onion"}}})
-- fuel items
core.register_craft({type = "fuel", recipe = "farming:straw", burntime = 3})
core.register_craft({type = "fuel", recipe = "farming:straw", burntime = 9})
core.register_craft({type = "fuel", recipe = "farming:wheat", burntime = 1})
core.register_craft({type = "fuel", recipe = "farming:weed_bale", burntime = 3})
core.register_craft({type = "fuel", recipe = "farming:weed_bale", burntime = 10})
core.register_craft({type = "fuel", recipe = "farming:weed", burntime = 1})
core.register_craft({type = "fuel", recipe = "farming:bowl",burntime = 10})
core.register_craft({type = "fuel", recipe = "farming:string", burntime = 1})

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
})