local info = {
['EnergyStored'] = format_thousand(energy),
['EnergyCapacity'] = format_thousand(maxene),
['FluidName'] = fluidName,
['FluidAmount'] = fluidAmount,
['FluidCapacity'] = fluidCapacity
}
local msg = textutils.serialize(info)
rednet.send(15, info)
be this?:
local info = {
['EnergyStored'] = format_thousand(energy),
['EnergyCapacity'] = format_thousand(maxene),
['FluidName'] = fluidName,
['FluidAmount'] = fluidAmount,
['FluidCapacity'] = fluidCapacity
}
local msg = textutils.serialize(info)
rednet.send(15, msg)
because now you are just sending over your table (with the rednet.send(15, info) and not the serialized msg


Posted by
