diff options
Diffstat (limited to 'crops/tomato.lua')
-rw-r--r-- | crops/tomato.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/crops/tomato.lua b/crops/tomato.lua index 53012a8..bab0e47 100644 --- a/crops/tomato.lua +++ b/crops/tomato.lua @@ -77,3 +77,12 @@ crop_def.drop = { } } minetest.register_node("farming:tomato_8", table.copy(crop_def)) + +-- add to registered_plants +farming.registered_plants["farming:tomato"] = { + crop = "farming:tomato", + seed = "farming:tomato", + minlight = 13, + maxlight = 15, + steps = 8 +} |