Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(1 edit)

I'v find how to fix pregnancy images issue.

In file "mods\expanded_portraits\exp_ch_stats.gd" in function "func is_visibly_pregnant():" need to replace:

--- return has_status('pregnant') or has_status('heavily_pregnant')
+++ return parent.get_ref().has_status('pregnant') or parent.get_ref().has_status('heavily_pregnant')

Not sure why "parent" should be called. Just copied that calling from "src\character\ch_stats.gd" (line 1738) from original game code.

Alright I'll look at this, sorry this time I was legitimately just not having access for a long time to be able to do things. Hope people were able to find this if they wanted it.

Ok so apparently the link was broken which is why you and everyone else still had old code. If you have time try the new version and let me know if it is actually working now.