diff --git a/js/003-data/miscData.js b/js/003-data/miscData.js index 53940a11848e2f1907ce608b94dedb0f5bfba076..3e26509cb65a694f1a22e62b7bb72e4cbb1a504b 100644 --- a/js/003-data/miscData.js +++ b/js/003-data/miscData.js @@ -2060,12 +2060,12 @@ App.Data.misc = { { name: "Hijab and blouse", value: "a hijab and blouse", - get rs() { return (V.boughtItem.clothing.conservative || V.continent === "the Middle East"); } + get rs() { return (V.boughtItem.clothing.conservative === 1 || V.continent === "the Middle East"); } }, { name: "Burkini", value: "a burkini", - get rs() { return V.boughtItem.clothing.swimwear === 1 && (V.boughtItem.clothing.swimwear || V.continent === "the Middle East"); } + get rs() { return V.boughtItem.clothing.swimwear === 1 && (V.boughtItem.clothing.swimwear === 1 || V.continent === "the Middle East"); } }, {name: "Santa dress", value: "a Santa dress", get rs() { return V.boughtItem.clothing.costume === 1; }},