From d4e2b851626faae51758b3f4145701d13c93a99b Mon Sep 17 00:00:00 2001 From: mweggen <361046+mweggen@users.noreply.github.com> Date: Sat, 29 Sep 2018 03:15:10 +0200 Subject: [PATCH] add check for long qipao bought --- src/js/storyJS.tw | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/js/storyJS.tw b/src/js/storyJS.tw index 8673eb8a22a..227180c3a0f 100644 --- a/src/js/storyJS.tw +++ b/src/js/storyJS.tw @@ -655,6 +655,13 @@ window.isItemAccessible = function(string) { return false; } break; + case 'a long qipao': + if ((State.variables.arcologies[0].FSChineseRevivalist > 0) || (State.variables.clothesBoughtQipao === 1)) { + return true; + } else { + return false; + } + break; case 'stretch pants and a crop-top': if ((State.variables.arcologies[0].FSHedonisticDecadence > 0) || (State.variables.clothesBoughtLazyClothes === 1)) { return true; -- GitLab