From e06da9e2ff3dc60845e126f47d50839c2714160e Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Thu, 6 Aug 2020 22:51:54 -0400 Subject: [PATCH] casual fix --- js/003-data/miscData.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/js/003-data/miscData.js b/js/003-data/miscData.js index 3e26509cb65..a47385c30c8 100644 --- a/js/003-data/miscData.js +++ b/js/003-data/miscData.js @@ -2117,22 +2117,22 @@ App.Data.misc = { { name: "Leather pants and pasties", value: "leather pants and pasties", - get rs() { return V.boughtItem.clothing.underwear === 1 && V.boughtItem.clothing.casual; } + get rs() { return V.boughtItem.clothing.underwear === 1 && V.boughtItem.clothing.casual === 1; } }, { name: "T-shirt and thong", value: "a t-shirt and thong", - get rs() { return V.boughtItem.clothing.underwear === 1 && V.boughtItem.clothing.casual; } + get rs() { return V.boughtItem.clothing.underwear === 1 && V.boughtItem.clothing.casual === 1; } }, { name: "Tube top and thong", value: "a tube top and thong", - get rs() { return V.boughtItem.clothing.underwear === 1 && V.boughtItem.clothing.casual; } + get rs() { return V.boughtItem.clothing.underwear === 1 && V.boughtItem.clothing.casual === 1; } }, { name: "Oversized t-shirt and boyshorts", value: "an oversized t-shirt and boyshorts", - get rs() { return V.boughtItem.clothing.underwear === 1 && V.boughtItem.clothing.casual; } + get rs() { return V.boughtItem.clothing.underwear === 1 && V.boughtItem.clothing.casual === 1; } }, {name: "Sport shorts and a sports bra", value: "sport shorts and a sports bra", get rs() { return V.boughtItem.clothing.sports === 1; }}, {name: "Sport shorts", value: "sport shorts", get rs() { return V.boughtItem.clothing.sports === 1; }}, @@ -2140,7 +2140,7 @@ App.Data.misc = { { name: "Sport shorts and a t-shirt", value: "sport shorts and a t-shirt", - get rs() { return V.boughtItem.clothing.sports === 1 && V.boughtItem.clothing.casual; } + get rs() { return V.boughtItem.clothing.sports === 1 && V.boughtItem.clothing.casual === 1; } }, {name: "Pony outfit (nice)", value: "a nice pony outfit", get rs() { return V.boughtItem.clothing.pony === 1; }}, {name: "Pony outfit (slutty)", value: "a slutty pony outfit", get rs() { return V.boughtItem.clothing.pony === 1; }}, -- GitLab