diff options
author | Max Hipp <34799688+maxxmodding@users.noreply.github.com> | 2018-03-23 22:01:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-23 22:01:23 +0100 |
commit | acfeb1e1b492eb45c648dffdc8e11c66ba4c1eb2 (patch) | |
tree | 0f22143cc3b4ee146bc308b7bfacfa3d7a0b725e | |
parent | 0882dfbcf856ae81042700b5dbe7438821f44399 (diff) |
-rw-r--r-- | craft.lua | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -14,9 +14,9 @@ minetest.register_craft({ minetest.register_craft({
output = 'trainblocks:sbahnblock',
recipe = {
- {'', 'dye:orange', ''},
+ {'', 'dye:green', ''},
{'dye:white', 'default:glass', 'dye:white'},
- {'', 'dye:orange', ''},
+ {'', 'dye:green', ''},
}
})
@@ -63,7 +63,7 @@ minetest.register_craft({ output = 'trainblocks:sbahnsignL 2',
recipe = {
{'', '', ''},
- {'dye:white', 'default:glass', 'dye:orange'},
+ {'dye:white', 'default:glass', 'dye:green'},
{'', '', ''},
}
})
@@ -72,7 +72,7 @@ minetest.register_craft({ output = 'trainblocks:sbahnsignR 2',
recipe = {
{'', '', ''},
- {'dye:blue', 'default:glass', 'dye:orange'},
+ {'dye:blue', 'default:glass', 'dye:green'},
{'', '', ''},
}
})
|