[Code] Love Starz should always use casual sprites whilst on vacation

SeriousBlueJewel

Well-Known Member
Nov 5, 2018
1,677
867
As stated in the title. Love Starz on vacation currently use their uniform sprites when clothed, but they should be using their casual sprites in stead.

Edit I didn't test this but their sprites are probably changing depending on the time during their vacation
 
Last edited:

SeriousBlueJewel

Well-Known Member
Nov 5, 2018
1,677
867
Bumping this Thread because it hasn't been fixed yet (and I checked with Frosty when I made this thread).

And adding a fix

Replace LoveStar.js Line 197
Code:
function pinkInCostume()
{
    if (flags["WATCHED_LOVE_STARZ"] == undefined) return true;
    if (flags.LOVE_STARZ_2_INTRO === 1) return false;
    if (hours < 1 || (hours >= 8 && hours < 14) || hours >= 22) return false;
    return true;
}

function blueInCostume()
{
    if (flags["WATCHED_LOVE_STARZ"] == undefined) return true;
    if (flags.LOVE_STARZ_2_INTRO === 1) return false;
    if (hours < 4 || (hours >= 12 && hours < 16) || hours >= 22) return false;
    return true;
}

function greenInCostume()
{
    if (flags["WATCHED_LOVE_STARZ"] == undefined) return true;
    if (flags.LOVE_STARZ_2_INTRO === 1) return false;
    if ((hours >= 6 && hours < 16)) return false;
    return true;
}