diff --git a/README.md b/README.md index d699179..cabdcf7 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ https://forum.minetest.net/viewtopic.php?id=8890 Changelog: -- 1.0 - Added glazed terracotta blocks when you cook baked clay in furnace (thanks D3monPixel) +- 1.0 - Re-Added glazed terracotta blocks when you cook baked clay in furnace (thanks Amara2_MK) - 0.9 - Baked clay now works in the technic cnc machine - 0.8 - Cooking clay block in furnace gives natural baked clay which you can dye - 0.7 - Added support for stairsplus so that stairs are registered properly diff --git a/init.lua b/init.lua index 61fc73b..b42c55e 100644 --- a/init.lua +++ b/init.lua @@ -131,24 +131,7 @@ for _, clay in pairs(clay) do end end --- special light blue glazed terracotta block -local texture = "baked_clay_terracotta_light_blue.png" - -minetest.register_node("bakedclay:terracotta_light_blue", { - description = "Light Blue Glazed Terracotta", - tiles = { - texture .. "", - texture .. "", - texture .. "^[transformR180", - texture .. "", - texture .. "^[transformR270", - texture .. "^[transformR90", - }, - paramtype2 = "facedir", - groups = {cracky = 3, terracotta = 1}, - sounds = default.node_sound_stone_defaults(), - on_place = minetest.rotate_node -}) +minetest.register_alias("bakedclay:terracotta_light_blue", "bakedclay:terracotta_cyan") -- cook clay block into white baked clay @@ -365,7 +348,6 @@ p = "bakedclay:terracotta_" lucky_block:add_blocks({ {"nod", "default:chest", 0, { - {name = p.."light_blue", max = 20}, {name = p.."black", max = 20}, {name = p.."blue", max = 20}, {name = p.."brown", max = 20}, diff --git a/license.txt b/license.txt index da710ed..6efb835 100644 --- a/license.txt +++ b/license.txt @@ -21,5 +21,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -Textures by D3monPixel (https://mcpedl.com/better-glazed-terracotta-pack) +Textures by Amara2_MK (Creative Commons) +https://www.curseforge.com/minecraft/texture-packs/glazed-terracotta-revamp baked_clay_terracotta*.png diff --git a/textures/baked_clay_terracotta_black.png b/textures/baked_clay_terracotta_black.png index 1011a68..77181d0 100644 Binary files a/textures/baked_clay_terracotta_black.png and b/textures/baked_clay_terracotta_black.png differ diff --git a/textures/baked_clay_terracotta_blue.png b/textures/baked_clay_terracotta_blue.png index 8ced312..77181d0 100644 Binary files a/textures/baked_clay_terracotta_blue.png and b/textures/baked_clay_terracotta_blue.png differ diff --git a/textures/baked_clay_terracotta_brown.png b/textures/baked_clay_terracotta_brown.png index 6b1163b..6b17843 100644 Binary files a/textures/baked_clay_terracotta_brown.png and b/textures/baked_clay_terracotta_brown.png differ diff --git a/textures/baked_clay_terracotta_cyan.png b/textures/baked_clay_terracotta_cyan.png index 13ebba7..cc6cff8 100644 Binary files a/textures/baked_clay_terracotta_cyan.png and b/textures/baked_clay_terracotta_cyan.png differ diff --git a/textures/baked_clay_terracotta_dark_green.png b/textures/baked_clay_terracotta_dark_green.png index 43297d3..4900f04 100644 Binary files a/textures/baked_clay_terracotta_dark_green.png and b/textures/baked_clay_terracotta_dark_green.png differ diff --git a/textures/baked_clay_terracotta_dark_grey.png b/textures/baked_clay_terracotta_dark_grey.png index 8eab4ed..0284328 100644 Binary files a/textures/baked_clay_terracotta_dark_grey.png and b/textures/baked_clay_terracotta_dark_grey.png differ diff --git a/textures/baked_clay_terracotta_green.png b/textures/baked_clay_terracotta_green.png index 20a10e3..4900f04 100644 Binary files a/textures/baked_clay_terracotta_green.png and b/textures/baked_clay_terracotta_green.png differ diff --git a/textures/baked_clay_terracotta_grey.png b/textures/baked_clay_terracotta_grey.png index a51e1da..0284328 100644 Binary files a/textures/baked_clay_terracotta_grey.png and b/textures/baked_clay_terracotta_grey.png differ diff --git a/textures/baked_clay_terracotta_magenta.png b/textures/baked_clay_terracotta_magenta.png index 5d6eb3a..4ac6943 100644 Binary files a/textures/baked_clay_terracotta_magenta.png and b/textures/baked_clay_terracotta_magenta.png differ diff --git a/textures/baked_clay_terracotta_orange.png b/textures/baked_clay_terracotta_orange.png index df798b7..e43289d 100644 Binary files a/textures/baked_clay_terracotta_orange.png and b/textures/baked_clay_terracotta_orange.png differ diff --git a/textures/baked_clay_terracotta_pink.png b/textures/baked_clay_terracotta_pink.png index 8f010ac..f487bf9 100644 Binary files a/textures/baked_clay_terracotta_pink.png and b/textures/baked_clay_terracotta_pink.png differ diff --git a/textures/baked_clay_terracotta_red.png b/textures/baked_clay_terracotta_red.png index ee46623..adbbe82 100644 Binary files a/textures/baked_clay_terracotta_red.png and b/textures/baked_clay_terracotta_red.png differ diff --git a/textures/baked_clay_terracotta_violet.png b/textures/baked_clay_terracotta_violet.png index f8376b9..8bc3847 100644 Binary files a/textures/baked_clay_terracotta_violet.png and b/textures/baked_clay_terracotta_violet.png differ diff --git a/textures/baked_clay_terracotta_white.png b/textures/baked_clay_terracotta_white.png index 8d75328..0284328 100644 Binary files a/textures/baked_clay_terracotta_white.png and b/textures/baked_clay_terracotta_white.png differ diff --git a/textures/baked_clay_terracotta_yellow.png b/textures/baked_clay_terracotta_yellow.png index 726cd53..e43289d 100644 Binary files a/textures/baked_clay_terracotta_yellow.png and b/textures/baked_clay_terracotta_yellow.png differ