Extra Comma
In the Tail, Genital Type section of the Codex's 'Stats' menu they is an extra comma and space put in:Incorrect Vagina Tagging
In the Tail, Genital Type section of the Codex if you have a tailcunt it will display "Both" instead of "Vagina"This is because that
gameStats.js
called the wrong slot in GLOBAL.TAIL_GENTIAL_TYPE_NAMES
:
JavaScript:
if(gCol && gCol != "") outputCodex(gCol + ", ");
outputCodex(GLOBAL.TYPE_NAMES[pc.gType]);
if(pc.hasTailCock()) outputCodex(", " + GLOBAL.TAIL_GENTIAL_TYPE_NAMES[1]);
if(pc.hasTailCunt()) outputCodex(", " + GLOBAL.TAIL_GENTIAL_TYPE_NAMES[2]); // Should be a 3 instead of a 2. (Or you change TAIL.GENTIAL_TYPE_NAMES)
GLOBAL.TAIL_GENTIAL_TYPE_NAMES
because "Vagina" is in slot 3 while "Both" is in slot 2:{
"0": "None",
"1": "Cock",
"2": "Both", // For some reason "Both" comes before "Vagina".
"3": "Vagina"
}
"0": "None",
"1": "Cock",
"2": "Both", // For some reason "Both" comes before "Vagina".
"3": "Vagina"
}
On a side note while looking into the code:
The game doesn't check for the Genital Slit crotch flag correctly it checks for
if(pc.hasCrotchFlag("Genital Slit"))
instead of checking for if(pc.hasCrotchFlag(GLOBAL.FLAG_GENITAL_SLIT))
(This is on line: 307 of
gameStats.js
).