diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt
index fbf924a10ba2e1919f7795e4106acb66a71e38c7..ff009d2b75ffb833722d7b9f256d047eca7317a0 100644
--- a/devNotes/twine JS.txt	
+++ b/devNotes/twine JS.txt	
@@ -1099,7 +1099,7 @@ window.isItemAccessible = function(string) {
 
 		case 'a burqa':
 		case 'a burkini':
-		case 'a hijab and blouse':
+		case 'a blouse and hijab':
 		case 'a niqab and abaya':
 			if (V.clothesBoughtMiddleEastern === 1 || V.continent === 'the Middle East') {
 				return true;
@@ -1108,7 +1108,7 @@ window.isItemAccessible = function(string) {
 			}
 			break;
 			
-		case 'klan robes':
+		case 'a klan robe':
 		case 'a schutzstaffel uniform':
 		case 'a slutty schutzstaffel uniform':
 			if (V.clothesBoughtPol === 1) {
@@ -15995,8 +15995,8 @@ window.rulesAssistantOptions = (function() {
 				["Burkini", "a burkini"],
 				["Burqa", "a burqa"],
 				["Dirndl", "a dirndl"],
-				["Hijab and blouse", "a hijab and blouse"],
-				["Klan robes", "klan robes"],
+				["Hijab and blouse", "a blouse and hijab"],
+				["Ku Klux Klan Robe", "a klan robe"],
 				["Lederhosen", "lederhosen"],
 				["Mounty outfit", "a mounty outfit"],
 				["Military uniform", "a military uniform"],
@@ -23851,11 +23851,11 @@ window.SlaveSummaryUncached = (function(){
 			case "a niqab and abaya":
 				r += `Niqab and abaya.`;
 				break;
-			case "klan robes":
-				r += `Klan robes.`;
+			case "a klan robe":
+				r += `Klan robe.`;
 				break;
-			case "a hijab and blouse":
-				r += `Hijab and blouse.`;
+			case "a blouse and hijab":
+				r += `Blouse and hijab.`;
 				break;
 			case "a burqa":
 				r += `Burqa.`;
diff --git a/src/js/itemAvailability.tw b/src/js/itemAvailability.tw
index fa06c5778ba81474c761489b0abf9fee549c7b12..60faf150472e61187b9b937aa574bb97a6dec2c3 100644
--- a/src/js/itemAvailability.tw
+++ b/src/js/itemAvailability.tw
@@ -139,7 +139,7 @@ window.isItemAccessible = function(string) {
 
 		case 'a burqa':
 		case 'a burkini':
-		case 'a hijab and blouse':
+		case 'a blouse and hijab':
 		case 'a niqab and abaya':
 			if (V.clothesBoughtMiddleEastern === 1 || V.continent === 'the Middle East') {
 				return true;
@@ -148,7 +148,7 @@ window.isItemAccessible = function(string) {
 			}
 			break;
 			
-		case 'klan robes':
+		case 'a klan robe':
 		case 'a schutzstaffel uniform':
 		case 'a slutty schutzstaffel uniform':
 			if (V.clothesBoughtPol === 1) {