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

It's a pretty simple bug, but it's related to Aric's mod not vanilla. Aric forgot to increase the clamped index range when adding his new sizes to sexdescription.gd. In line 1250 it says:

return getRandStr( descPenisSize[ clamp(limitsPenis[0],0,2) * 2 + int(areAllAttrib_E_val(group, C_AGE, C_CHILD)) ])

but it should be:

return getRandStr( descPenisSize[ clamp(limitsPenis[0],0,5) * 2 + int(areAllAttrib_E_val(group, C_AGE, C_CHILD)) ])

It just changes the max size from 2 to 5.

Thank you very much, I will test that.

I assumed it was a simple error, that's why I tried to fix it myself. That, however, was more difficult that I thought. I didn't even recognise the langage used, so I thought that it would be better if someone who knows what they are doing takes a look at that. (Btw what is the name of the programmig language?)

The language is gdscript from the Godot Engine. It is based on a simplified mix of Python and LUA, though mostly the first.

I appreciate the fix, I’ll add it to the hotfix!