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