veikk0
2016-03-30 2258adb2a9b2ec223ea3614a39ecbd59d2d6c948
technic/machines/register/solar_array.lua
@@ -17,6 +17,8 @@
      pos1.y = pos.y + 1
      pos1.x = pos.x
      pos1.z = pos.z
      technic.get_or_load_node(pos1)
      local light = minetest.get_node_light(pos1, nil)
      local time_of_day = minetest.get_timeofday()
      local meta = minetest.get_meta(pos)
@@ -28,7 +30,7 @@
         local charge_to_give = math.floor((light + pos.y) * data.power)
         charge_to_give = math.max(charge_to_give, 0)
         charge_to_give = math.min(charge_to_give, data.power * 50)
         meta:set_string("infotext", S("%s Active"):format(machine_name).." ("..charge_to_give.."EU)")
         meta:set_string("infotext", S("@1 Active (@2 EU)", machine_name, technic.pretty_num(charge_to_give)))
         meta:set_int(tier.."_EU_supply", charge_to_give)
      else
         meta:set_string("infotext", S("%s Idle"):format(machine_name))
@@ -40,7 +42,8 @@
      tiles = {"technic_"..ltier.."_solar_array_top.png",  "technic_"..ltier.."_solar_array_bottom.png",
          "technic_"..ltier.."_solar_array_side.png", "technic_"..ltier.."_solar_array_side.png",
          "technic_"..ltier.."_solar_array_side.png", "technic_"..ltier.."_solar_array_side.png"},
      groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2, technic_machine=1},
      groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2, technic_machine=1, ["technic_"..ltier]=1},
      connect_sides = {"bottom"},
      sounds = default.node_sound_wood_defaults(),
      description = S("Arrayed Solar %s Generator"):format(tier),
      active = false,