Hello I am trying to edit this mod Science - Full Transmit
@PART[*]:HAS[@MODULE:HAS[#experimentID[*]&#xmitDataScalar[<1]]]
{
@MODULE:HAS[#experimentID[*]&#xmitDataScalar[<1]]
{
// For each Module with an experimentID and a transmit penalty, adjust xmitDataScalar to eliminate the penalty.
@xmitDataScalar = 1.0
}
}
It looks like it just takes any xmitDataScalar that's less than 1 and makes it 1, what I'd like to do is only apply this to experiments with an xmitDataScalar that's less than 1 AND greater than 0, that way it doesn't affect experiments that can't be transmitted at all like surface samples. Is there any way to do a double inequality like that? I couldn't find anything about it on the module manager wiki.