diff options
Diffstat (limited to 'trafficlight')
-rw-r--r-- | trafficlight/depends.txt | 3 | ||||
-rw-r--r-- | trafficlight/init.lua | 5 |
2 files changed, 6 insertions, 2 deletions
diff --git a/trafficlight/depends.txt b/trafficlight/depends.txt index e0e13a6..8d7b8d8 100644 --- a/trafficlight/depends.txt +++ b/trafficlight/depends.txt @@ -1,3 +1,4 @@ default streetsmod -digilines?
\ No newline at end of file +digilines? +mesecons?
\ No newline at end of file diff --git a/trafficlight/init.lua b/trafficlight/init.lua index 6a6922d..4f3f201 100644 --- a/trafficlight/init.lua +++ b/trafficlight/init.lua @@ -1,6 +1,7 @@ --[[ StreetsMod: inDev Trafficlights ]] +if streets.extendedBy.mesecons and streets.extendedBy.digilines then minetest.register_node(":streets:trafficlight_bottom",{ description = "Trafficlight", groups = {cracky = 1}, @@ -215,4 +216,6 @@ minetest.register_node(":streets:trafficlight_top_warn",{ }, pointable = false, light_source = 6, -})
\ No newline at end of file +}) + +end
\ No newline at end of file |