Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

I'm getting crashes whenever anyone tries to "Fondle Chest" for a character with multiple sets of nipples. As soon as I click "Fondle Chest" with anyone with multiple nipples/breasts the game freezes briefly (less than a second) and crashes to desktop. I started a new game for this version, and it is a new clean install with only this and the bug fix loaded.

(3 edits)

A simple vanilla error, one that has managed to be preserved in Aric's mod and slip by despite having been found a long time ago. It's actually the skin cover that is causing it, not the multple nipples. Line 1698 in sexdescriptions.gd is:

return getRandStr(descTitsBodyType[3])

but should be:

return getRandStr(descTitsBodyType[1])

The index 3 should be 1.

Thanks mate, I’ll add it to the hotfix!