summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--trafficlight/init.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/trafficlight/init.lua b/trafficlight/init.lua
index b0a80d9..a1e7f9d 100644
--- a/trafficlight/init.lua
+++ b/trafficlight/init.lua
@@ -276,4 +276,13 @@ minetest.register_node(":streets:trafficlight_top_warn",{
end
}
},
+})
+
+minetest.register_craft({
+ output = "streets:trafficlight_top_off",
+ recipe = {
+ {"default:steel_ingot", "dye:red", "default:steel_ingot"},
+ {"default:steel_ingot", "dye:yellow", "default:steel_ingot"},
+ {"default:steel_ingot", "dye:green", "default:steel_ingot"}
+ }
}) \ No newline at end of file