tweaked grains growing vars

This commit is contained in:
TenPlus1 2019-01-11 11:01:41 +00:00
父節點 bedade8755
當前提交 f872075d99
共有 2 個檔案被更改,包括 1 行新增13 行删除

查看文件

@ -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

查看文件

@ -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,
})