From 832b8f8817e8f3a003211cb905a049224d0f2d43 Mon Sep 17 00:00:00 2001 From: Jat15 Date: Sat, 17 Feb 2018 21:08:08 +0100 Subject: [PATCH] Craft Circle Stone Brick and Stone tile (#82) * Craft Circle Stone Brick and Stone tile Craft Circle Stone Brick was similar furnace. Stone Tile is more similar with stone block. * Modify Circle Stone Brick * Modify craft Stone Tile --- CHANGELOG.md | 6 ++++++ crafting.lua | 15 ++++++++------- 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 817f6b9..f720912 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - The circular saw can no longer replace items from the player's inventory when it is full. +### Changed + +- New craft for: + - Stone Tile + - Circle Stone Bricks + ## [1.1.0] - 2017-10-04 ### Added diff --git a/crafting.lua b/crafting.lua index b6432c7..3fb9830 100644 --- a/crafting.lua +++ b/crafting.lua @@ -94,11 +94,11 @@ minetest.register_craft({ }) minetest.register_craft({ - output = "moreblocks:circle_stone_bricks 8", + output = "moreblocks:circle_stone_bricks 5", recipe = { - {"default:stone", "default:stone", "default:stone"}, - {"default:stone", "", "default:stone"}, - {"default:stone", "default:stone", "default:stone"}, + {"", "default:stone", ""}, + {"default:stone", "default:coal_lump", "default:stone"}, + {"", "default:stone", ""}, } }) @@ -156,10 +156,11 @@ minetest.register_craft({ }) minetest.register_craft({ - output = "moreblocks:stone_tile 4", + output = "moreblocks:stone_tile 9", recipe = { - {"default:cobble", "default:cobble"}, - {"default:cobble", "default:cobble"}, + {"default:cobble", "default:cobble", "default:cobble"}, + {"default:cobble", "default:stone", "default:cobble"}, + {"default:cobble", "default:cobble", "default:cobble"}, } })