Update craft.lua
This commit is contained in:
parent
67d70a7b4b
commit
e02e67f5a5
16
craft.lua
16
craft.lua
@ -3,7 +3,7 @@
|
||||
-- Blocks
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'trainblocks:subwayblock',
|
||||
output = 'trainblocks_bc:subwayblock',
|
||||
recipe = {
|
||||
{'', 'dye:blue', ''},
|
||||
{'dye:white', 'default:glass', 'dye:white'},
|
||||
@ -12,7 +12,7 @@ minetest.register_craft({
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'trainblocks:sbahnblock',
|
||||
output = 'trainblocks_bc:sbahnblock',
|
||||
recipe = {
|
||||
{'', 'dye:orange', ''},
|
||||
{'dye:white', 'default:glass', 'dye:white'},
|
||||
@ -26,7 +26,7 @@ local dyes2 = {"white", "white", "white", "white", "white", "black", "white", "w
|
||||
|
||||
for count = 1, 10, 1 do
|
||||
minetest.register_craft({
|
||||
output = "trainblocks:line" .. count .. " 4",
|
||||
output = "trainblocks_bc:line" .. count .. " 4",
|
||||
recipe = {
|
||||
{'', "dye:" .. dyes1[count] , ''},
|
||||
{"dye:" .. dyes2[count], 'default:glass', ''},
|
||||
@ -40,7 +40,7 @@ end
|
||||
--subway direction signs
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'trainblocks:subwaysignL 2',
|
||||
output = 'trainblocks_bc:subwaysignL 2',
|
||||
recipe = {
|
||||
{'', '', ''},
|
||||
{'dye:white', 'default:glass', 'dye:blue'},
|
||||
@ -49,7 +49,7 @@ minetest.register_craft({
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'trainblocks:subwaysignR 2',
|
||||
output = 'trainblocks_bc:subwaysignR 2',
|
||||
recipe = {
|
||||
{'', '', ''},
|
||||
{'dye:blue', 'default:glass', 'dye:white'},
|
||||
@ -60,7 +60,7 @@ minetest.register_craft({
|
||||
--sbahn direction signs
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'trainblocks:sbahnsignL 2',
|
||||
output = 'trainblocks_bc:sbahnsignL 2',
|
||||
recipe = {
|
||||
{'', '', ''},
|
||||
{'dye:white', 'default:glass', 'dye:orange'},
|
||||
@ -69,10 +69,10 @@ minetest.register_craft({
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'trainblocks:sbahnsignR 2',
|
||||
output = 'trainblocks_bc:sbahnsignR 2',
|
||||
recipe = {
|
||||
{'', '', ''},
|
||||
{'dye:blue', 'default:glass', 'dye:orange'},
|
||||
{'', '', ''},
|
||||
}
|
||||
})
|
||||
})
|
||||
|
Loading…
x
Reference in New Issue
Block a user