diff options
author | Max Hipp <34799688+maxxmodding@users.noreply.github.com> | 2018-03-08 16:20:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-08 16:20:15 +0100 |
commit | e02e67f5a5c5610e98865e5a67db9ee7e541818f (patch) | |
tree | 63a01965b40176de6def3b48ae7a595a079fb844 | |
parent | 67d70a7b4bcbbe1a2f84e86049887e2b7b27c1b0 (diff) |
Update craft.lua
-rw-r--r-- | craft.lua | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -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'},
{'', '', ''},
}
-})
\ No newline at end of file +})
|