1. I think I found the issue for repetitively infinite pregnancy:
the cum amount doesn't actually get reset after the pregnancy start, causing it to keep going in cycle.
I'm gonna try to add an assignment to each cum value to equal 0 after pregnancy is acquired to see if that works.
2. also, you might actually to update with
if pregnant=1: daypass-=1
instead of
if pregnant=1: daypass+=1
for it to countdown...
3. oh, also all the lines like
if AdePreg=1 and daypass>=90:
need to be set like so
if AdePreg=1 and daypass<=0:
(<= in case a day is skipped)
4. and lactation needs a huge fix cause it has no max cap thus the mc can have practically infinite milk bottles and thus infinite money.
instead of only
lact+=10
as a base lact update, always put something like
Code:
if lact=<10:
lact+=10
end
so that it never goes above 20.
5. (also working on a bit of code so that the lactation actually only start the day when birthing is possible, not before and stop naturally after 60 days after birth without aid of lactaid that would reset the clock instead of being an on/off switch)
6. Mmm.... actually I thought about a lactaid overdose mechanic, need to plan that before actually coding it, so won't work on it until I finished the forestS exploration and pregnancy mechanic.