From 888b0ebfec8c2eff9015163549a7e47443cb8665 Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Fri, 1 Apr 2016 21:00:20 -0400 Subject: "explode" all modpacks into their individual components (you can't have a modpack buried inside a modpack) --- .../advanced_aircraft_warning_light.lua | 55 ---------------------- 1 file changed, 55 deletions(-) delete mode 100644 streets/infrastructure/advanced_aircraft_warning_light.lua (limited to 'streets/infrastructure/advanced_aircraft_warning_light.lua') diff --git a/streets/infrastructure/advanced_aircraft_warning_light.lua b/streets/infrastructure/advanced_aircraft_warning_light.lua deleted file mode 100644 index 1361f7b..0000000 --- a/streets/infrastructure/advanced_aircraft_warning_light.lua +++ /dev/null @@ -1,55 +0,0 @@ --- Aircraft warning light -minetest.register_node("infrastructure:aircraft_warning_light", { - description = "Aircraft warning light", - tiles = { - {name="infrastructure_aircraft_warning_light_top_anim.png",animation={type="vertical_frames", aspect_w=32, aspect_h=32, length=4}}, - "infrastructure_traffic_lights_side.png", - {name="infrastructure_aircraft_warning_light_side_anim.png",animation={type="vertical_frames", aspect_w=32, aspect_h=32, length=4}}, - {name="infrastructure_aircraft_warning_light_side_anim.png",animation={type="vertical_frames", aspect_w=32, aspect_h=32, length=4}}, - {name="infrastructure_aircraft_warning_light_side_anim.png",animation={type="vertical_frames", aspect_w=32, aspect_h=32, length=4}}, - {name="infrastructure_aircraft_warning_light_side_anim.png",animation={type="vertical_frames", aspect_w=32, aspect_h=32, length=4}} - }, - drawtype = "nodebox", - paramtype = "light", - groups = {cracky = 1}, - light_source = AIRCRAFT_WARNING_LIGHT_LIGHT_RANGE, - node_box = { - type = "fixed", - fixed = { - {-1/128, 1/4, -1/128, 1/128, 3/8, 1/128}, - - {-1/4, -1/8, 0, 1/4, 1/4, 0}, - {0, -1/8, -1/4, 0, 1/4, 1/4}, - - {-1/16, -1/8, -1/16, 1/16, 1/16, 1/16}, - - {-1/4, -1/4, -1/8, 1/4, -1/8, 1/8}, - {-1/8, -1/4, -1/4, 1/8, -1/8, 1/4}, - - {-1/8, -3/8, -1/8, 1/8, -1/4, 1/8}, - - {-3/16, -1/2, -3/16, 3/16, -3/8, 3/16} - } - }, - selection_box = { - type = "fixed", - fixed = { - {-1/128, 1/4, -1/128, 1/128, 3/8, 1/128}, - - {-1/4, -1/8, 0, 1/4, 1/4, 0}, - {0, -1/8, -1/4, 0, 1/4, 1/4}, - - {-1/16, -1/8, -1/16, 1/16, 1/16, 1/16}, - - {-1/4, -1/4, -1/8, 1/4, -1/8, 1/8}, - {-1/8, -1/4, -1/4, 1/8, -1/8, 1/4}, - - {-1/8, -3/8, -1/8, 1/8, -1/4, 1/8}, - - {-3/16, -1/2, -3/16, 3/16, -3/8, 3/16} - } - } -}) - -minetest.register_alias("infrastructure:aircraft_warning_light_bright", "infrastructure:aircraft_warning_light") -minetest.register_alias("infrastructure:aircraft_warning_light_dark", "infrastructure:aircraft_warning_light") -- cgit v1.2.3