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) --- .../infrastructure/advanced_crosswalk_lighting.lua | 85 ---------------------- 1 file changed, 85 deletions(-) delete mode 100644 streets/infrastructure/advanced_crosswalk_lighting.lua (limited to 'streets/infrastructure/advanced_crosswalk_lighting.lua') diff --git a/streets/infrastructure/advanced_crosswalk_lighting.lua b/streets/infrastructure/advanced_crosswalk_lighting.lua deleted file mode 100644 index 4e669c1..0000000 --- a/streets/infrastructure/advanced_crosswalk_lighting.lua +++ /dev/null @@ -1,85 +0,0 @@ --- Crosswalk lighting - minetest.register_node("infrastructure:crosswalk_lighting_dark", { - description = "Crosswalk lighting", - tiles = { - "infrastructure_traffic_lights_side.png", - "infrastructure_crosswalk_lighting_bottom.png", - "infrastructure_traffic_lights_side.png", - "infrastructure_traffic_lights_side.png", - "infrastructure_crosswalk_lighting_back.png", - "infrastructure_crosswalk_lighting_front.png" - }, - drawtype = "nodebox", - paramtype = "light", - paramtype2 = "facedir", - groups = {cracky = 3}, - node_box = { - type = "fixed", - fixed = { - {-3/8, -1/2, -1/4, 3/8, 1/2, -3/16}, - {-3/8, -1/2, 3/16, 3/8, 1/2, 1/4}, - {-1/4, 1/4, -3/16, -1/8, 3/8, 3/16}, - {1/8, 1/4, -3/16, 1/4, 3/8, 3/16}, - {-1/8, -1/2, -3/16, 1/8, -1/4, 3/16}, - {-1/2, -1/2, -1/8, 1/2, -3/8, 1/8}, - } - }, - selection_box = { - type = "fixed", - fixed = {-3/8, -1/2, -1/4, 3/8, 1/2, 1/4} - }, - - on_punch = function(pos, node) - minetest.swap_node(pos, {name = "infrastructure:crosswalk_lighting_bright", param2 = node.param2}) - end, - - mesecons = {effector = { - action_on = function (pos, node) - minetest.swap_node(pos, {name = "infrastructure:crosswalk_lighting_bright", param2 = node.param2}) - end, - }} - }) - - minetest.register_node("infrastructure:crosswalk_lighting_bright", { - tiles = { - "infrastructure_traffic_lights_side.png", - "infrastructure_crosswalk_lighting_bottom.png", - "infrastructure_traffic_lights_side.png", - "infrastructure_traffic_lights_side.png", - "infrastructure_crosswalk_lighting_back.png", - "infrastructure_crosswalk_lighting_front.png" - }, - drawtype = "nodebox", - paramtype = "light", - paramtype2 = "facedir", - groups = {cracky = 3, not_in_creative_inventory = 1}, - light_source = CROSSWALK_LIGHTING_LIGHT_RANGE, - drop = "infrastructure:crosswalk_lighting_dark", - node_box = { - type = "fixed", - fixed = { - {-3/8, -1/2, -1/4, 3/8, 1/2, -3/16}, - {-3/8, -1/2, 3/16, 3/8, 1/2, 1/4}, - {-1/4, 1/4, -3/16, -1/8, 3/8, 3/16}, - {1/8, 1/4, -3/16, 1/4, 3/8, 3/16}, - {-1/8, -1/2, -3/16, 1/8, -1/4, 3/16}, - {-1/2, -1/2, -1/8, 1/2, -3/8, 1/8}, - } - }, - selection_box = { - type = "fixed", - fixed = {-3/8, -1/2, -1/4, 3/8, 1/2, 1/4} - }, - - on_punch = function(pos, node) - minetest.swap_node(pos, {name = "infrastructure:crosswalk_lighting_dark", param2 = node.param2}) - end, - - mesecons = {effector = { - action_off = function (pos, node) - minetest.swap_node(pos, {name = "infrastructure:crosswalk_lighting_dark", param2 = node.param2}) - end, - }} - }) - - minetest.register_alias("infrastructure:crosswalk_lighting", "infrastructure:crosswalk_lighting_dark") -- cgit v1.2.3