From aca1af3938d0b2fa4fcfcb438e7cbe01902e2928 Mon Sep 17 00:00:00 2001 From: Blank <okp57855@psoxs.com> Date: Tue, 2 Oct 2018 19:30:58 -0700 Subject: [PATCH] Inital twine JS mirror of Burkini/Blouse + Fixes. --- devNotes/twine JS.txt | 16 ++++++++-------- src/js/itemAvailability.tw | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt index fbf924a10ba..ff009d2b75f 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 fa06c5778ba..60faf150472 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) { -- GitLab