you
2017-06-05 987cc5a6a425b1f9bcd9000608dc389a45c675a1
technic/machines/register/solar_array.lua
@@ -30,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("@1 Active (@2 EU)", machine_name, technic.prettynum(charge_to_give)))
         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))