diff --git a/mods/ITEMS/mcl_colorblocks/init.lua b/mods/ITEMS/mcl_colorblocks/init.lua index 6bcb40e3d..0db8b7963 100644 --- a/mods/ITEMS/mcl_colorblocks/init.lua +++ b/mods/ITEMS/mcl_colorblocks/init.lua @@ -3,7 +3,7 @@ local init = os.clock() local block = {} block.dyes = { - {"white", "White", "white"}, + {"white", "White", "white", true}, {"grey", "Grey", "dark_grey"}, {"silver", "Light Grey", "grey"}, {"black", "Black", "black"}, @@ -18,7 +18,7 @@ block.dyes = { {"brown", "Brown", "brown"}, {"pink", "Pink", "pink"}, {"lime", "Lime", "green"}, - {"light_blue", "Light Blue", "lightblue"}, + {"light_blue", "Light Blue", "lightblue", true}, } minetest.register_node("mcl_colorblocks:hardened_clay", { diff --git a/mods/ITEMS/mcl_colorblocks/textures/mcl_colorblocks_glazed_terracotta_light_blue.png b/mods/ITEMS/mcl_colorblocks/textures/mcl_colorblocks_glazed_terracotta_light_blue.png new file mode 100644 index 000000000..b5b9187a8 Binary files /dev/null and b/mods/ITEMS/mcl_colorblocks/textures/mcl_colorblocks_glazed_terracotta_light_blue.png differ diff --git a/mods/ITEMS/mcl_colorblocks/textures/mcl_colorblocks_glazed_terracotta_white.png b/mods/ITEMS/mcl_colorblocks/textures/mcl_colorblocks_glazed_terracotta_white.png new file mode 100644 index 000000000..9a51e7da0 Binary files /dev/null and b/mods/ITEMS/mcl_colorblocks/textures/mcl_colorblocks_glazed_terracotta_white.png differ