[Game Version: 0.9.001-PUBLIC#1986] Stats Menu - 'Tail, Genital Type' has some problems

Status
Not open for further replies.

OrangeBurner

Well-Known Member
Mar 13, 2022
305
72

Extra Comma​

In the Tail, Genital Type section of the Codex's 'Stats' menu they is an extra comma and space put in:
Tail, Genital Type - Extra Comma.png

Incorrect Vagina Tagging​

In the Tail, Genital Type section of the Codex if you have a tailcunt it will display "Both" instead of "Vagina"
Tail, Genital Type - Tailcunt displayed as Both.png

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)
Admittedly, the problem kinda stems from 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"
}


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).
 
Status
Not open for further replies.