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