From bb48034a438733e832f14b2d5e11edcf2c95a2bc Mon Sep 17 00:00:00 2001 From: Sokomine Date: Mon, 28 Sep 2015 01:33:17 +0200 Subject: [PATCH] added support for cblocks --- depends.txt | 1 + init.lua | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/depends.txt b/depends.txt index 7e83163..deb2ecc 100644 --- a/depends.txt +++ b/depends.txt @@ -21,3 +21,4 @@ mydeck? mycorners? mymulch? clothing? +cblocks? diff --git a/init.lua b/init.lua index 28fc375..13ee5db 100644 --- a/init.lua +++ b/init.lua @@ -23,6 +23,7 @@ -- Version 0.6 -- Changelog: +-- 28.09.15 Added support for cblocks: https://forum.minetest.net/viewtopic.php?f=9&t=13303&view=unread#p192497 -- 23.05.15 As all dyes can be crafted into other dyes, only white dye is consumed - provided the -- other dyes needed for the crafting chain are stored. -- 22.05.15 Added support for new homedecor meshnodes. @@ -293,8 +294,10 @@ colormachine.data = { clothing_inv_shirt_ = { nr=44, modname='clothing', shades={1,0,1,0,0,0,1,0}, grey_shades={1,0,1,1,1}, u=0, descr="clshirt", block="clothing:shirt_white", add="shirt_",p=1}, clothing_inv_pants_ = { nr=45, modname='clothing', shades={1,0,1,0,0,0,1,0}, grey_shades={1,0,1,1,1}, u=0, descr="clpants", block="clothing:pants_white", add="pants_",p=1}, clothing_inv_cape_ = { nr=46, modname='clothing', shades={1,0,1,0,0,0,1,0}, grey_shades={1,0,1,1,1}, u=0, descr="clcape", block="clothing:cape_white", add="cape_",p=1}, -} + cblocks_wood_ = { nr=2.01,modname='cblocks', shades={1,0,1,0,0,0,1,0}, grey_shades={1,0,1,1,1}, u=0, descr="cblwo", block="default:wood", add="wood_",p=1, composed=1}, + cblocks_stonebrick_ = { nr=2.02,modname='cblocks', shades={1,0,1,0,0,0,1,0}, grey_shades={1,0,1,1,1}, u=0, descr="cblsb", block="default:stonebrick", add="stonebrick_",p=1, composed=1}, +} local mydeck_names = {'deck_boards','deck_beam',