Looking over your save file, there's not much I can do to fix your issue from the game's side.
It looks like your character lost the "Zaika Inflation" status effect (a hidden effect, not to be confused with the perk). This status effect is supposed to control how much breastRatingMod your character gained for the top-most breast row, based on the character's current lust value. Losing the effect made the breastRatingMod value permanent. While losing the status effect during orgasm
is normal, it was supposed to have taken the added breastRatingMod with it--so somehow, that didn't happen.
I did make some adjustments for the next release that might help with clarity, but it doesn't necessarily fix your issues.
To manually solve your issue, if you are playing through the browser and you are using the same save file posted here, you will need to make sure your character had just had an orgasm (to have lust at 0) and then insert this command into the console:
Code:
pc.breastRows[0].breastRatingMod = 0;
Also, I noticed that your character has the "Static Heal" status effect, which should be a combat-only status effect. I fixed the typo for that status effect, but you'll have to remove it manually for your save by using the command:
Code:
pc.removeStatusEffect("Static Heal");
Hope this helps.