Skip to content
Snippets Groups Projects
Commit d6254846 authored by Ed86's avatar Ed86
Browse files

fix for cum error when having sex at age 0

parent 035beffe
No related branches found
No related tags found
No related merge requests found
......@@ -456,6 +456,9 @@ namespace rjw
float age_scaling = humanLifespan / pawnLifespan;
float scaled_age = pawnAge * age_scaling;
if (scaled_age < 1)
scaled_age = 1;
return (int)scaled_age;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment