Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Hi ankmairdor,

Ithink that I found a bug. The penis size descriptor in the sexdescriptions are not evaluated correctly. Sinze I couldn't really make sense of what you did there exaclty, I can't tell you much more.

Steps to reproduce:
(Note that I only noticed that, since I have a futa as slaver with a "massive" cock. I don't know if all descriptions are fucked up)

* Slaver: Demon futa, massive cock
* Initiate sex scene with anyone
* check penis size description while using it on anyone.

You can also add a horse for the same effect/bug. Note that the inspect screen is evaluating this correctly, so I don't know why it's not working poperly. I was to lasy to check what the difference between the two (identify screen and sexdescriptions) is to be honest.

(+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!