diff options
Diffstat (limited to 'trafficlight/init.lua')
-rw-r--r-- | trafficlight/init.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/trafficlight/init.lua b/trafficlight/init.lua index c085dd9..6a6922d 100644 --- a/trafficlight/init.lua +++ b/trafficlight/init.lua @@ -139,6 +139,7 @@ minetest.register_node(":streets:trafficlight_top_red",{ } }, pointable = false, + light_source = 6, }) minetest.register_node(":streets:trafficlight_top_yellow",{ @@ -156,6 +157,7 @@ minetest.register_node(":streets:trafficlight_top_yellow",{ } }, pointable = false, + light_source = 6, }) minetest.register_node(":streets:trafficlight_top_redyellow",{ @@ -173,6 +175,7 @@ minetest.register_node(":streets:trafficlight_top_redyellow",{ } }, pointable = false, + light_source = 6, }) minetest.register_node(":streets:trafficlight_top_green",{ @@ -190,6 +193,7 @@ minetest.register_node(":streets:trafficlight_top_green",{ } }, pointable = false, + light_source = 6, }) minetest.register_node(":streets:trafficlight_top_warn",{ @@ -210,4 +214,5 @@ minetest.register_node(":streets:trafficlight_top_warn",{ } }, pointable = false, + light_source = 6, })
\ No newline at end of file |