summaryrefslogtreecommitdiff
path: root/trafficlight
diff options
context:
space:
mode:
authorChristian Danscheid <Christian_D_97@gmx.de>2013-08-15 11:22:23 +0200
committerChristian Danscheid <Christian_D_97@gmx.de>2013-08-15 11:22:23 +0200
commit2a229d6552dfd08d817272edea2caf85de865c32 (patch)
tree8e5ebc65dce88cd2d4fa6ff800d1b7fa3bb84b82 /trafficlight
parent5506b45d57ad5f907b7f86363b42f9a3adfb2dd2 (diff)
downloadroads-2a229d6552dfd08d817272edea2caf85de865c32.tar
roads-2a229d6552dfd08d817272edea2caf85de865c32.tar.gz
roads-2a229d6552dfd08d817272edea2caf85de865c32.tar.bz2
roads-2a229d6552dfd08d817272edea2caf85de865c32.tar.xz
roads-2a229d6552dfd08d817272edea2caf85de865c32.zip
made trafficlight emit light
Diffstat (limited to 'trafficlight')
-rw-r--r--trafficlight/init.lua5
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