tidy lucky blocks

This commit is contained in:
TenPlus1 2017-10-12 12:00:42 +01:00
parent e630074a9f
commit 02b1c4c235
2 changed files with 9 additions and 7 deletions

View File

@ -27,4 +27,4 @@ Changelog:
- 0.5 - Added support for default bush and acacia bush saplings - 0.5 - Added support for default bush and acacia bush saplings
- 0.6 - Using newer functions, Minetest 0.4.16 and above needed to run - 0.6 - Using newer functions, Minetest 0.4.16 and above needed to run
Lucky Blocks: 2 Lucky Blocks: 5

View File

@ -13,10 +13,12 @@ end
if minetest.get_modpath("lucky_block") then if minetest.get_modpath("lucky_block") then
lucky_block:add_blocks({ lucky_block:add_blocks({
{"lig"}, {"lig"},
{"dro", {"bonemeal:mulch", "bonemeal:bonemeal", "bonemeal:fertiliser"}, 10}, {"dro", {"bonemeal:mulch"}, 10},
{"cus", growy}, {"dro", {"bonemeal:bonemeal"}, 10},
}) {"dro", {"bonemeal:fertiliser"}, 10},
{"cus", growy},
})
end -- END IF end