diff options
author | cheapie <no-email-for-you@example.com> | 2016-05-12 15:05:39 -0500 |
---|---|---|
committer | cheapie <no-email-for-you@example.com> | 2016-05-12 15:05:39 -0500 |
commit | 4de839f8521f534d203f9822ff0d2370c5053123 (patch) | |
tree | 95ef48497c9714484e28d439e04881ae3aeb3518 /trafficlight | |
parent | 1cced6fb370c902c6396a3ee13032451286f5217 (diff) | |
download | roads-4de839f8521f534d203f9822ff0d2370c5053123.tar roads-4de839f8521f534d203f9822ff0d2370c5053123.tar.gz roads-4de839f8521f534d203f9822ff0d2370c5053123.tar.bz2 roads-4de839f8521f534d203f9822ff0d2370c5053123.tar.xz roads-4de839f8521f534d203f9822ff0d2370c5053123.zip |
Add crafting recipes for the recently-added traffic lights
All traffic lights are now craftable.
Diffstat (limited to 'trafficlight')
-rw-r--r-- | trafficlight/init.lua | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/trafficlight/init.lua b/trafficlight/init.lua index a3d0660..8e182a0 100644 --- a/trafficlight/init.lua +++ b/trafficlight/init.lua @@ -711,6 +711,31 @@ minetest.register_craft({ }) minetest.register_craft({ + output = "streets:pedlight_top_off", + recipe = { + {"default:steel_ingot", "dye:orange", "default:steel_ingot"}, + {"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"}, + {"default:steel_ingot", "dye:white", "default:steel_ingot"} + } +}) + +minetest.register_craft({ + output = "streets:trafficlight_top_extender_left_off", + recipe = { + {"dye:yellow", "default:steel_ingot", "default:steel_ingot"}, + {"dye:green", "default:steel_ingot", "default:steel_ingot"} + } +}) + +minetest.register_craft({ + output = "streets:trafficlight_top_extender_right_off", + recipe = { + {"default:steel_ingot", "default:steel_ingot", "dye:yellow"}, + {"default:steel_ingot", "default:steel_ingot", "dye:green"} + } +}) + +minetest.register_craft({ output = "streets:digiline_distributor", recipe = { {"", "digilines:wire_std_00000000", ""}, |