diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2018-09-29 16:53:18 +0100 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2018-09-29 16:53:18 +0100 |
commit | d7bc9b16fc68af6fbd643c6afdf619a0478a8579 (patch) | |
tree | a93d0f772286595492f28592dc5b1ab1a024c78d /crops/melon.lua | |
parent | 0d5fb9800aec6399f7939d0b6f58fa5186d086b5 (diff) |
added crop information to farming.registered_plants table20181016
Diffstat (limited to 'crops/melon.lua')
-rw-r--r-- | crops/melon.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/crops/melon.lua b/crops/melon.lua index 43c0809..06056a0 100644 --- a/crops/melon.lua +++ b/crops/melon.lua @@ -84,3 +84,12 @@ crop_def.groups = { --crop_def.drop = "farming:melon_slice 9" crop_def.drop = "farming:melon_8" minetest.register_node("farming:melon_8", table.copy(crop_def)) + +-- add to registered_plants +farming.registered_plants["farming:melon"] = { + crop = "farming:melon", + seed = "farming:melon_slice", + minlight = 13, + maxlight = 15, + steps = 8 +} |