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