This question traces back to page 90 something.except most of those were moved to random_generation_functions.rpy not sure when 48.1 for sure
If they are using my mod I made a weighted age list.
This way it doesn't get rid of older women entirely just reduces the number of them.
		Python:
	
	weighted_age_list = [[18,20],[19,20],[20,19],[21,19],[22,18],[23,18],[24,17],[25,17],[26,16],[27,16],[28,15],[29,15],[30,14],[31,14],[32,13],[33,13],[34,12],[35,12],[36,11],[37,11],[38,10],[39,9],[40,8],[41,7],[42,6],[43,5],[44,4],[45,3],[46,2],[47,1],[48,1],[49,1],[50,1]]
if age is None:
    #age = renpy.random.randint(18,50)
    age = get_random_from_weighted_list(weighted_age_list);
	
		Python:
	
	weighted_age_list = [[18,12],[19,15],[20,18],[21,21],[22,18],[23,15],[24,12]]
if age is None:
    #age = renpy.random.randint(18,50)
    age = get_random_from_weighted_list(weighted_age_list);
	You could do something like I did above where 21 is the most common age selected and it reduces on both side of it.