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