What do you mean by "they change"? I see no code in the game indicating a change to the MassageChart.
The Auto-Massage is way superior anyway because it takes 0 time while reducing more addiction if you don't bother about Lust. Advancing no time is most likely not really intended if someone wants to report this.
And while reporting this, tell the dev to take a look at the "sexy selfie" flirt option as well for another exploit to fix.
Jean can also not gain the "Exhibitionist" trait due unfortunate check:
Code:
elif "exhibitionist" not in Girl.Traits:
$ Girl.FaceChange("sly")
if Girl is JeanX and "nowhammy" not in JeanX.Traits:
#if it's Jean, this doesn't count unless she's got "nowhammy" status
pass
else:
$ Girl.Traits.append("exhibitionist")
"[Girl.Name] seems to have become something of an exhibitionist."
Her "whammy" ability is not implemented thus this check will always pass according to my tests.
Another bug in Girl_Fondle.rpy:
Code:
label Girl_IP_Prep: #Animation set-up
if not Ch_Focus.InsertP:
$ Ch_Focus.InsertP = 1
$ Ch_Focus.SEXP += 10
InsertP is "finger pussy" which is always set to 1 instead of +=1, never counting more than one time uses.