From 4de839f8521f534d203f9822ff0d2370c5053123 Mon Sep 17 00:00:00 2001 From: cheapie Date: Thu, 12 May 2016 15:05:39 -0500 Subject: Add crafting recipes for the recently-added traffic lights All traffic lights are now craftable. --- trafficlight/init.lua | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/trafficlight/init.lua b/trafficlight/init.lua index a3d0660..8e182a0 100644 --- a/trafficlight/init.lua +++ b/trafficlight/init.lua @@ -710,6 +710,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 = { -- cgit v1.2.3