diff options
author | webdesigner97 <Christian_D_97@gmx.de> | 2014-05-30 17:11:43 +0200 |
---|---|---|
committer | webdesigner97 <Christian_D_97@gmx.de> | 2014-05-30 17:11:43 +0200 |
commit | a6d7ef2abc932cc77686caef9489854842a1d895 (patch) | |
tree | b3696e3811518a1d5dfc96fad0daeaa5b27fa39b | |
parent | 18418ff0a83cde5ccbc96b403ddbc4482328efd0 (diff) | |
download | roads-a6d7ef2abc932cc77686caef9489854842a1d895.tar roads-a6d7ef2abc932cc77686caef9489854842a1d895.tar.gz roads-a6d7ef2abc932cc77686caef9489854842a1d895.tar.bz2 roads-a6d7ef2abc932cc77686caef9489854842a1d895.tar.xz roads-a6d7ef2abc932cc77686caef9489854842a1d895.zip |
use old controller nodebox
-rw-r--r-- | trafficlight/init.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/trafficlight/init.lua b/trafficlight/init.lua index 1257f2c..b0a80d9 100644 --- a/trafficlight/init.lua +++ b/trafficlight/init.lua @@ -93,6 +93,15 @@ minetest.register_node(":streets:digiline_distributor",{ description = streets.S("Digiline distributor"), tiles = {"streets_lampcontroller_top.png","streets_lampcontroller_bottom.png","streets_lampcontroller_sides.png"}, groups = {cracky = 1}, + drawtype = "nodebox", + paramtype = "light", + node_box = { + type = "fixed", + fixed = { + {-0.5,-0.5,-0.5,0.5,0.5,0.5}, + {-0.05,0.5,-0.05,0.05,1.6,0.05} + } + }, digiline = { receptor = {}, effector = {}, |