Update craft.lua

This commit is contained in:
Max Hipp 2018-03-23 22:01:23 +01:00 committed by GitHub
parent 0882dfbcf8
commit acfeb1e1b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,9 +14,9 @@ minetest.register_craft({
minetest.register_craft({ minetest.register_craft({
output = 'trainblocks:sbahnblock', output = 'trainblocks:sbahnblock',
recipe = { recipe = {
{'', 'dye:orange', ''}, {'', 'dye:green', ''},
{'dye:white', 'default:glass', 'dye:white'}, {'dye:white', 'default:glass', 'dye:white'},
{'', 'dye:orange', ''}, {'', 'dye:green', ''},
} }
}) })
@ -63,7 +63,7 @@ minetest.register_craft({
output = 'trainblocks:sbahnsignL 2', output = 'trainblocks:sbahnsignL 2',
recipe = { recipe = {
{'', '', ''}, {'', '', ''},
{'dye:white', 'default:glass', 'dye:orange'}, {'dye:white', 'default:glass', 'dye:green'},
{'', '', ''}, {'', '', ''},
} }
}) })
@ -72,7 +72,7 @@ minetest.register_craft({
output = 'trainblocks:sbahnsignR 2', output = 'trainblocks:sbahnsignR 2',
recipe = { recipe = {
{'', '', ''}, {'', '', ''},
{'dye:blue', 'default:glass', 'dye:orange'}, {'dye:blue', 'default:glass', 'dye:green'},
{'', '', ''}, {'', '', ''},
} }
}) })