Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

The mod is working for me for the most part, the only thing that it doesnt do is changing the images to a pregnant version when the character has the pregnancy icon. I tried to do a clean installation of the game and deleted all previous mods but nothing changes. The nudity option however is working fine with swapping images.

Ok I'll take a look at this again. I believe the way the mod pulls pregnancy might not be exactly the same as when the icon appears so it might be broken now sometimes or always (I took some shortcuts in how I tested this that might not be fully valid in the new game)

Yep, found and fixed, thanks.

(2 edits)

I'm using the v1.1.1 version but it's not changing the images for the pregnant variations, not even inside the sexual encounters...

Edit:

Fixed it by using the following code in the exp_ch_stats.gd:

func is_visibly_pregnant():
    if (variables.pregduration/1.5 > get_stat('pregnancy').duration && get_stat('pregnancy').duration > 0):
        return true
    else:
        return false

I looked at the code and added some print() logs to find the cause, and noticed that the is_visibly_pregnant() always returned false, then noticed that the has_status() func looks for tags in the character status, and the character in the save file has no pregnant tag. 

Then I looked into how the pregnancy icon is set, and noticed it used the get_stat('pregnancy') func instead. I switched, and it worked.