1
0
mirror of https://github.com/mt-mods/homedecor_modpack.git synced 2025-06-28 04:50:21 +02:00

do similar for marble

This commit is contained in:
Vanessa Ezekowitz
2015-04-18 17:09:18 -04:00
parent 4ec6a72d5d
commit 814d43f541
3 changed files with 11 additions and 11 deletions

View File

@ -60,8 +60,8 @@ minetest.register_craft({
minetest.register_craft({
output = 'building_blocks:BWtile 10',
recipe = {
{"building_blocks:Marble", "group:tar_block"},
{"group:tar_block", "building_blocks:Marble"},
{"group:marble", "group:tar_block"},
{"group:tar_block", "group:marble"},
}
})
minetest.register_craft({
@ -526,7 +526,7 @@ minetest.register_node("building_blocks:Marble", {
description = "Marble",
tiles = {"building_blocks_marble.png"},
is_ground_content = true,
groups = {cracky=3},
groups = {cracky=3, marble = 1},
sounds = default.node_sound_stone_defaults(),
})
minetest.register_craft({
@ -579,9 +579,9 @@ if not minetest.get_modpath("technic") then
minetest.register_craft({
output = "technic:granite 9",
recipe = {
{ "group:tar_block", "building_blocks:Marble", "group:tar_block" },
{ "building_blocks:Marble", "group:tar_block", "building_blocks:Marble" },
{ "group:tar_block", "building_blocks:Marble", "group:tar_block" }
{ "group:tar_block", "group:marble", "group:tar_block" },
{ "group:marble", "group:tar_block", "group:marble" },
{ "group:tar_block", "group:marble", "group:tar_block" }
},
})