mirror of
https://github.com/minetest-mods/technic.git
synced 2024-11-10 20:40:27 +01:00
bugfix concrete's craft recipe
This commit is contained in:
parent
ad0bef9d90
commit
3a6916f721
|
@ -2,7 +2,7 @@
|
||||||
--(c) 2013 by RealBadAngel <mk@realbadangel.pl>
|
--(c) 2013 by RealBadAngel <mk@realbadangel.pl>
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = ':technic:rebar 6',
|
output = 'technic:rebar 6',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'','', 'default:steel_ingot'},
|
{'','', 'default:steel_ingot'},
|
||||||
{'','default:steel_ingot',''},
|
{'','default:steel_ingot',''},
|
||||||
|
@ -11,7 +11,7 @@ minetest.register_craft({
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = ':technic:concrete 5',
|
output = 'technic:concrete 5',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'default:stone','technic:rebar','default:stone'},
|
{'default:stone','technic:rebar','default:stone'},
|
||||||
{'technic:rebar','default:stone','technic:rebar'},
|
{'technic:rebar','default:stone','technic:rebar'},
|
||||||
|
@ -20,14 +20,14 @@ minetest.register_craft({
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = ':technic:concrete_post_platform 6',
|
output = 'technic:concrete_post_platform 6',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'technic:concrete','technic:concrete_post','technic:concrete'},
|
{'technic:concrete','technic:concrete_post','technic:concrete'},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = ':technic:concrete_post 12',
|
output = 'technic:concrete_post 12',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'default:stone','technic:rebar','default:stone'},
|
{'default:stone','technic:rebar','default:stone'},
|
||||||
{'default:stone','technic:rebar','default:stone'},
|
{'default:stone','technic:rebar','default:stone'},
|
||||||
|
|
Loading…
Reference in New Issue
Block a user