Quinn missing preg busts

Neu

Member
Jul 27, 2021
14
8
Quinn's busts during her pregnancy and after will never show. I wrote why in the code comments.

JavaScript:
function quinnBustDisplay(nude = false)
{
    let sBust = "QUINN";
    let pregDays = window.quinnPregDays();
   
    if(pregDays > 30)
    {
        // the image QUINN_PREG exists
        // but this line is never true because flags["QUINN_TOTAL_KIDS"] is undefined
        if(pregDays <= 80 && flags["QUINN_TOTAL_KIDS"] <= 0) sBust += "_PREG";
        // this bust doesn't show because the game is looking for QUINN_PREG_TITS, but the image file is named QUINN_TITS_PREG
        else if(pregDays <= 130) sBust += "_PREG_TITS";
        // this bust doesn't show because the game is looking for QUINN_PREG_HUGE, but the image file is named QUINN_HUGE
        else sBust += "_PREG_HUGE";
    }
    else if(flags["QUINN_TOTAL_KIDS"] > 0)
    {
        // there's no QUINN_MOMMY image, but there's a QUINN_TITS image
        sBust += "_MOMMY";
    }
    if(nude) sBust += "_NUDE";
   
    return sBust;
}