mirror of
https://github.com/Sokomine/cottages.git
synced 2025-07-04 17:10:23 +02:00
added missing textures; made indigrents for craft receipes configurable; added compatibility for realtest; added wool in case no wool is installed; other minor tweaks
This commit is contained in:
@ -208,9 +208,9 @@ minetest.register_node("cottages:anvil", {
|
||||
minetest.register_craft({
|
||||
output = "cottages:anvil",
|
||||
recipe = {
|
||||
{'default:steel_ingot','default:steel_ingot','default:steel_ingot'},
|
||||
{'', 'default:steel_ingot','' },
|
||||
{'default:steel_ingot','default:steel_ingot','default:steel_ingot'} },
|
||||
{cottages.craftitem_steel,cottages.craftitem_steel,cottages.craftitem_steel},
|
||||
{'', cottages.craftitem_steel,'' },
|
||||
{cottages.craftitem_steel,cottages.craftitem_steel,cottages.craftitem_steel} },
|
||||
})
|
||||
|
||||
|
||||
@ -237,8 +237,8 @@ end
|
||||
minetest.register_craft({
|
||||
output = "cottages:hammer",
|
||||
recipe = {
|
||||
{'default:steel_ingot','default:steel_ingot','default:steel_ingot'},
|
||||
{'default:steel_ingot','default:steel_ingot','default:steel_ingot'},
|
||||
{'', 'default:stick', '' } }
|
||||
{cottages.craftitem_steel,cottages.craftitem_steel,cottages.craftitem_steel},
|
||||
{cottages.craftitem_steel,cottages.craftitem_steel,cottages.craftitem_steel},
|
||||
{'', cottages.craftitem_stick, '' } }
|
||||
})
|
||||
|
||||
|
Reference in New Issue
Block a user