1
0
mirror of https://codeberg.org/tenplus1/farming.git synced 2025-06-29 14:50:52 +02:00

added crop information to farming.registered_plants table

This commit is contained in:
TenPlus1
2018-09-29 16:53:18 +01:00
parent 0d5fb9800a
commit d7bc9b16fc
27 changed files with 233 additions and 8 deletions

View File

@ -83,3 +83,12 @@ crop_def.drop = {
}
}
minetest.register_node("farming:beetroot_5", table.copy(crop_def))
-- add to registered_plants
farming.registered_plants["farming:beetroot"] = {
crop = "farming:beetroot",
seed = "farming:beetroot",
minlight = 13,
maxlight = 15,
steps = 5
}