Use machine casing in most machine recipes

This commit is contained in:
Zefram
2014-07-06 17:13:11 +01:00
committed by Novatux
parent 430b310eb4
commit e8a5a6652d
18 changed files with 46 additions and 46 deletions

View File

@ -8,9 +8,9 @@ local S = technic.getter
minetest.register_craft({
output = 'technic:tool_workshop',
recipe = {
{'group:wood', 'group:wood', 'group:wood'},
{'group:wood', 'default:diamond', 'group:wood'},
{'default:stone', 'default:copper_ingot', 'default:stone'},
{'group:wood', 'default:diamond', 'group:wood'},
{'group:wood', 'technic:machine_casing', 'group:wood'},
{'default:stone', 'default:copper_ingot', 'default:stone'},
}
})