diff options
| author | cheapie <no-email-for-you@example.com> | 2016-01-12 15:52:41 -0600 | 
|---|---|---|
| committer | cheapie <no-email-for-you@example.com> | 2016-01-12 15:52:41 -0600 | 
| commit | 3a9a4bd5f3209a494cc61f05668514c1f793c5e1 (patch) | |
| tree | a2f948c293742079627adf953db0581542a8cedd | |
| parent | 29e20c68eed046698bf3c450ac3a6113872f48b2 (diff) | |
| download | roads-3a9a4bd5f3209a494cc61f05668514c1f793c5e1.tar roads-3a9a4bd5f3209a494cc61f05668514c1f793c5e1.tar.gz roads-3a9a4bd5f3209a494cc61f05668514c1f793c5e1.tar.bz2 roads-3a9a4bd5f3209a494cc61f05668514c1f793c5e1.tar.xz roads-3a9a4bd5f3209a494cc61f05668514c1f793c5e1.zip  | |
Remove the warn interval when shutting off
| -rw-r--r-- | trafficlight/init.lua | 9 | 
1 files changed, 3 insertions, 6 deletions
diff --git a/trafficlight/init.lua b/trafficlight/init.lua index 1306748..67e531d 100644 --- a/trafficlight/init.lua +++ b/trafficlight/init.lua @@ -28,8 +28,7 @@ streets.tlRhythm = {  		{name = "streets:trafficlight_top_green", pauseBefore = 1.5}  	},  	toOff = { -		{name = "streets:trafficlight_top_warn", pauseBefore = 0}, -		{name = "streets:trafficlight_top_off", pauseBefore = 5} +		{name = "streets:trafficlight_top_off", pauseBefore = 0}  	},  	toWarn = {  		{name = "streets:trafficlight_top_warn", pauseBefore = 0} @@ -49,8 +48,7 @@ streets.tlRhythm_left = {  		{name = "streets:trafficlight_top_left_green", pauseBefore = 1.5}  	},  	toOff = { -		{name = "streets:trafficlight_top_left_warn", pauseBefore = 0}, -		{name = "streets:trafficlight_top_left_off", pauseBefore = 5} +		{name = "streets:trafficlight_top_left_off", pauseBefore = 0}  	},  	toWarn = {  		{name = "streets:trafficlight_top_left_warn", pauseBefore = 0} @@ -70,8 +68,7 @@ streets.tlRhythm_right = {  		{name = "streets:trafficlight_top_right_green", pauseBefore = 1.5}  	},  	toOff = { -		{name = "streets:trafficlight_top_right_warn", pauseBefore = 0}, -		{name = "streets:trafficlight_top_right_off", pauseBefore = 5} +		{name = "streets:trafficlight_top_right_off", pauseBefore = 0}  	},  	toWarn = {  		{name = "streets:trafficlight_top_right_warn", pauseBefore = 0}  | 
