diff options
| author | TenPlus1 <kinsellaja@yahoo.com> | 2017-10-12 11:55:56 +0100 | 
|---|---|---|
| committer | TenPlus1 <kinsellaja@yahoo.com> | 2017-10-12 11:55:56 +0100 | 
| commit | 268946971aab3c4299672a22e43781cd189b94bc (patch) | |
| tree | 9c732cd934aa9371bc4048c53882fac79bd7de54 | |
| parent | bd8a624aa7d90cf6231fb4b66ecbdece0411ea01 (diff) | |
add more lucky blocks
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | init.lua | 10 | 
2 files changed, 9 insertions, 3 deletions
@@ -15,4 +15,4 @@ Changelog:  - 0.2 - Any colour of baked clay can be re-dyed into another colour  - 0.1 - Initial Release -Lucky Blocks: 4 +Lucky Blocks: 8 @@ -42,7 +42,7 @@ for _, clay in pairs(clay) do  	})  	-- register stairsplus stairs if found -	if minetest.get_modpath("moreblocks") then +	if minetest.get_modpath("moreblocks") and stairsplus then  		stairsplus:register_all("bakedclay", "baked_clay_" .. clay[1], "bakedclay:" .. clay[1], {  			description = clay[2] .. " Baked Clay", @@ -244,7 +244,13 @@ lucky_block:add_blocks({  	{"fal", {p.."black", p.."blue", p.."brown", p.."cyan", p.."dark_green",  		p.."dark_grey", p.."green", p.."grey", p.."magenta", p.."orange",  		p.."pink", p.."red", p.."violet", p.."white", p.."yellow"}, 0, true}, -	{"dro", {p.."delphinium", p.."lazarus", p.."mannagrass"}, 6}, +	{"dro", {p.."delphinium"}, 5}, +	{"dro", {p.."lazarus"}, 5}, +	{"dro", {p.."mannagrass"}, 5}, +	{"dro", {p.."thistle"}, 6}, +	{"flo", 5, {p.."black", p.."blue", p.."brown", p.."cyan", p.."dark_green", +		p.."dark_grey", p.."green", p.."grey", p.."magenta", p.."orange", +		p.."pink", p.."red", p.."violet", p.."white", p.."yellow"}, 2},  })  end  | 
