mGain mLoss

Hey preg, can you clarify how mGain and mLoss interact?

Doc says:

mGain - slave constantly gains muscle mass, easier to gain muscle.
mLoss - slave constantly loses muscle mass, easier to gain muscle.
mGain + mLoss - slave muscle gain/loss amplified, passively lose muscle unless building

But that seems like a typo. They BOTH make it easier to gain muscle?

This started because I was wondering if this is correct:

	if (s.geneticQuirks.mGain === 2 && s.geneticQuirks.mLoss !== 2) {
		if (V.geneticMappingUpgrade >= 1) {
			retval.push({text: "Additional dietary supplements due to muscle loss", value: Math.trunc(foodCost * 0.2)});
		} else {
			retval.push({text: "Adjustment for unusual dietary deficiencies", value: Math.trunc(foodCost * 0.2)});
		}

which I read as "if their genetic quirk has them gaining and NOT losing, tell the player they are losing. Seems wrong.