Added stone brick and cobble for better castle building

This commit is contained in:
DonBatman 2016-05-13 07:49:48 -07:00
parent d060aef5b2
commit 2292b6da8e
2 changed files with 18 additions and 0 deletions

View File

@ -270,6 +270,8 @@ then
local items = {
{"default:stone", "default_stone"},
{"default:stonebrick", "default_stone_brick"},
{"default:cobble", "default_cobble"},
{"default:desert_stone", "default_desert_stone"},
{"default:sandstone", "default_sandstone"},
{"default:clay", "default_clay"},

View File

@ -7,6 +7,22 @@ mymillwork.register_all(
"default:stone"
)
mymillwork.register_all(
"default_stone_brick",
"Stone Brick",
"default_stone_brick.png",
{cracky = 3,not_in_creative_inventory=1},
"default:stonebrick"
)
mymillwork.register_all(
"default_cobble",
"Cobble",
"default_cobble.png",
{cracky = 3,not_in_creative_inventory=1},
"default:cobble"
)
mymillwork.register_all(
"default_desert_stone",
"Desert Stone",