diff options
| author | Xanthin <Xanthin@users.noreply.github.com> | 2014-04-15 23:23:13 +0200 | 
|---|---|---|
| committer | Xanthin <Xanthin@users.noreply.github.com> | 2014-04-15 23:23:13 +0200 | 
| commit | b9ea10d76e1b58b65a85552561a15e6826287e62 (patch) | |
| tree | 99eaa40e6ecf16c22266c1ac0def350e9f2c67e0 /trafficlight | |
| parent | 6557c46ead5d3a98c4b8b8fa0536d1ee2f680299 (diff) | |
| parent | afe5ec461fe580b8a6dceda37136e18b7b3464fc (diff) | |
| download | roads-b9ea10d76e1b58b65a85552561a15e6826287e62.tar roads-b9ea10d76e1b58b65a85552561a15e6826287e62.tar.gz roads-b9ea10d76e1b58b65a85552561a15e6826287e62.tar.bz2 roads-b9ea10d76e1b58b65a85552561a15e6826287e62.tar.xz roads-b9ea10d76e1b58b65a85552561a15e6826287e62.zip | |
Merge pull request #1 from webdesigner97/master
update to latest version
Diffstat (limited to 'trafficlight')
| -rw-r--r-- | trafficlight/init.lua | 18 | ||||
| -rw-r--r-- | trafficlight/textures/streets_lampcontroller_bottom.png | bin | 532 -> 0 bytes | |||
| -rw-r--r-- | trafficlight/textures/streets_lampcontroller_sides.png | bin | 651 -> 0 bytes | |||
| -rw-r--r-- | trafficlight/textures/streets_lampcontroller_top.png | bin | 583 -> 0 bytes | |||
| -rw-r--r-- | trafficlight/textures/streets_tl_bg.png | bin | 3513 -> 0 bytes | |||
| -rw-r--r-- | trafficlight/textures/streets_tl_green.png | bin | 3290 -> 0 bytes | |||
| -rw-r--r-- | trafficlight/textures/streets_tl_off.png | bin | 3267 -> 0 bytes | |||
| -rw-r--r-- | trafficlight/textures/streets_tl_red.png | bin | 3295 -> 0 bytes | |||
| -rw-r--r-- | trafficlight/textures/streets_tl_redyellow.png | bin | 3318 -> 0 bytes | |||
| -rw-r--r-- | trafficlight/textures/streets_tl_warn.png | bin | 3699 -> 0 bytes | |||
| -rw-r--r-- | trafficlight/textures/streets_tl_yellow.png | bin | 3295 -> 0 bytes | |||
| -rw-r--r-- | trafficlight/textures/streets_trafficlight_inv.png | bin | 2772 -> 0 bytes | 
12 files changed, 9 insertions, 9 deletions
| diff --git a/trafficlight/init.lua b/trafficlight/init.lua index 3eaa43a..4704743 100644 --- a/trafficlight/init.lua +++ b/trafficlight/init.lua @@ -2,7 +2,7 @@  	StreetsMod: inDev Trafficlights  ]]  minetest.register_node(":streets:trafficlight_bottom",{ -	description = "Cheater", +	description = S("Cheater"),  	drop = "",  	groups = {not_in_creative_inventory = 1},  	paramtype = "light", @@ -20,7 +20,7 @@ minetest.register_node(":streets:trafficlight_bottom",{  })  minetest.register_node(":streets:trafficlight_middle",{ -	description = "Cheater!", +	description = S("Cheater!"),  	drop = "",  	groups = {cracky = 1, not_in_creative_inventory = 1},  	paramtype = "light", @@ -37,7 +37,7 @@ minetest.register_node(":streets:trafficlight_middle",{  })  minetest.register_node(":streets:trafficlight_controller",{ -	description = "Trafficlight", +	description = S("Trafficlight"),  	inventory_image = "streets_trafficlight_inv.png",  	tiles = {"streets_lampcontroller_top.png","streets_lampcontroller_bottom.png","streets_lampcontroller_sides.png"},  	groups = {cracky = 1}, @@ -119,7 +119,7 @@ minetest.register_node(":streets:trafficlight_controller",{  })  minetest.register_node(":streets:trafficlight_top_off",{ -	description = "U cheater U", +	description = S("U cheater U"),  	drop = "",  	groups = {cracky = 1, not_in_creative_inventory = 1},  	paramtype = "light", @@ -137,7 +137,7 @@ minetest.register_node(":streets:trafficlight_top_off",{  })  minetest.register_node(":streets:trafficlight_top_red",{ -	description = "U cheater U", +	description = S("U cheater U"),  	drop = "",  	groups = {cracky = 1, not_in_creative_inventory = 1},  	paramtype = "light", @@ -156,7 +156,7 @@ minetest.register_node(":streets:trafficlight_top_red",{  })  minetest.register_node(":streets:trafficlight_top_yellow",{ -	description = "U cheater U", +	description = S("U cheater U"),  	drop = "",  	groups = {cracky = 1, not_in_creative_inventory = 1},  	paramtype = "light", @@ -175,7 +175,7 @@ minetest.register_node(":streets:trafficlight_top_yellow",{  })  minetest.register_node(":streets:trafficlight_top_redyellow",{ -	description = "U cheater U", +	description = S("U cheater U"),  	drop = "",  	groups = {cracky = 1, not_in_creative_inventory = 1},  	paramtype = "light", @@ -194,7 +194,7 @@ minetest.register_node(":streets:trafficlight_top_redyellow",{  })  minetest.register_node(":streets:trafficlight_top_green",{ -	description = "U cheater U", +	description = S("U cheater U"),  	drop = "",  	groups = {cracky = 1, not_in_creative_inventory = 1},  	paramtype = "light", @@ -213,7 +213,7 @@ minetest.register_node(":streets:trafficlight_top_green",{  })  minetest.register_node(":streets:trafficlight_top_warn",{ -	description = "U cheater U", +	description = S("U cheater U"),  	drop = "",  	groups = {cracky = 1, not_in_creative_inventory = 1},  	paramtype = "light", diff --git a/trafficlight/textures/streets_lampcontroller_bottom.png b/trafficlight/textures/streets_lampcontroller_bottom.pngBinary files differ deleted file mode 100644 index cdd5b40..0000000 --- a/trafficlight/textures/streets_lampcontroller_bottom.png +++ /dev/null diff --git a/trafficlight/textures/streets_lampcontroller_sides.png b/trafficlight/textures/streets_lampcontroller_sides.pngBinary files differ deleted file mode 100644 index 39e9960..0000000 --- a/trafficlight/textures/streets_lampcontroller_sides.png +++ /dev/null diff --git a/trafficlight/textures/streets_lampcontroller_top.png b/trafficlight/textures/streets_lampcontroller_top.pngBinary files differ deleted file mode 100644 index cee87b3..0000000 --- a/trafficlight/textures/streets_lampcontroller_top.png +++ /dev/null diff --git a/trafficlight/textures/streets_tl_bg.png b/trafficlight/textures/streets_tl_bg.pngBinary files differ deleted file mode 100644 index f0bba98..0000000 --- a/trafficlight/textures/streets_tl_bg.png +++ /dev/null diff --git a/trafficlight/textures/streets_tl_green.png b/trafficlight/textures/streets_tl_green.pngBinary files differ deleted file mode 100644 index 014b118..0000000 --- a/trafficlight/textures/streets_tl_green.png +++ /dev/null diff --git a/trafficlight/textures/streets_tl_off.png b/trafficlight/textures/streets_tl_off.pngBinary files differ deleted file mode 100644 index 16621e7..0000000 --- a/trafficlight/textures/streets_tl_off.png +++ /dev/null diff --git a/trafficlight/textures/streets_tl_red.png b/trafficlight/textures/streets_tl_red.pngBinary files differ deleted file mode 100644 index 2481a86..0000000 --- a/trafficlight/textures/streets_tl_red.png +++ /dev/null diff --git a/trafficlight/textures/streets_tl_redyellow.png b/trafficlight/textures/streets_tl_redyellow.pngBinary files differ deleted file mode 100644 index 0a85622..0000000 --- a/trafficlight/textures/streets_tl_redyellow.png +++ /dev/null diff --git a/trafficlight/textures/streets_tl_warn.png b/trafficlight/textures/streets_tl_warn.pngBinary files differ deleted file mode 100644 index 8b4da58..0000000 --- a/trafficlight/textures/streets_tl_warn.png +++ /dev/null diff --git a/trafficlight/textures/streets_tl_yellow.png b/trafficlight/textures/streets_tl_yellow.pngBinary files differ deleted file mode 100644 index 3666cae..0000000 --- a/trafficlight/textures/streets_tl_yellow.png +++ /dev/null diff --git a/trafficlight/textures/streets_trafficlight_inv.png b/trafficlight/textures/streets_trafficlight_inv.pngBinary files differ deleted file mode 100644 index fb76b72..0000000 --- a/trafficlight/textures/streets_trafficlight_inv.png +++ /dev/null | 
