diff --git a/README.md b/README.md index 28e3d0b..7064b61 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ This mod works by adding your new plant to the {growing=1} group and numbering t ### Changelog: -- 1.39 - Added Rice, Rye and Oats thanks to Ademants Grains mod. +- 1.39 - Added Rice, Rye and Oats thanks to Ademants Grains mod. Added Jaffa Cake. - 1.38 - Pumpkin grows into block, use chopping board to cut into 4x slices, same with melon block, 2x2 slices makes a block, cocoa pods are no longer walkable - 1.37 - Added custom 'growth_check(pos, nodename) function for crop nodes to use (check cocoa.lua for example) - 1.36 - Added Beetroot, Beetroot Soup (6x beetroot, 1x bowl), fix register_plant() issue, add new recipes diff --git a/crops/ryeoatrice.lua b/crops/ryeoatrice.lua index 9344201..934b160 100644 --- a/crops/ryeoatrice.lua +++ b/crops/ryeoatrice.lua @@ -8,10 +8,6 @@ farming.register_plant("farming:rye", { paramtype2 = "meshoptions", inventory_image = "farming_rye_seed.png", steps = 8, - minlight = 13, - maxlight = default.LIGHT_MAX, - fertility = {"savannah"}, - groups = {flammable = 4}, place_param2 = 3, }) @@ -36,10 +32,6 @@ farming.register_plant("farming:oat", { paramtype2 = "meshoptions", inventory_image = "farming_oat_seed.png", steps = 8, - minlight = 13, - maxlight = default.LIGHT_MAX, - fertility = {"savannah"}, - groups = {flammable = 4}, place_param2 = 3, }) @@ -64,10 +56,6 @@ farming.register_plant("farming:rice", { paramtype2 = "meshoptions", inventory_image = "farming_rice_seed.png", steps = 8, - minlight = 13, - maxlight = default.LIGHT_MAX, - fertility = {"savannah"}, - groups = {flammable = 4}, place_param2 = 3, })