diff --git a/js/003-data/miscData.js b/js/003-data/miscData.js
index 3e26509cb65a694f1a22e62b7bb72e4cbb1a504b..a47385c30c8f561452834f55b0fb457e87567158 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; }},