SageWorks There's currently a bug where after you become "fit", everytime you sleep you switch back and forth from "fit" to "overweight". That's because the logic is messed up.
Currently, the code is:
With the current code, if your fitness is at least 65 and you've already been turned "fit", you won't satisfy the 1st condition, but you will satisfy the 2nd condition and it'll revert you to being overweight. That's because
!= "overw"
is satisfied by both "large" and "fit" (and "sexy", when it's added). Just specify that you only want "large" characters to undergo transformation1, and "overw" characters to undergo transformation2, etc. It's a simple fix:
Or this: