diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt index 23cc44b1a10d7b484f08a41f01d7a5223267ff77..ef97188a04b1806c46a9070b0bcd990fb55bbd43 100644 --- a/devNotes/twine JS.txt +++ b/devNotes/twine JS.txt @@ -15088,7 +15088,7 @@ window.rulesAssistantOptions = (function() { if (V.club > 0) items.push(["Club", "serve in the club"]); if (V.arcade > 0) items.push(["Arcade", "be confined in the arcade"]); if (V.dairy > 0) items.push(["Dairy", "work in the dairy"]); - if (V.servantQuarters > 0) items.push(["Servant Quarters", "work as a servant"]); + if (V.servantsQuarters > 0) items.push(["Servant Quarters", "work as a servant"]); if (V.masterSuite > 0) items.push(["Master Suite", "serve in the master suite"]); if (V.schoolroom > 0) items.push(["Schoolroom", "learn in the schoolroom"]); if (V.spa > 0) items.push(["Spa", "rest in the spa"]); diff --git a/src/js/rulesAssistantOptions.tw b/src/js/rulesAssistantOptions.tw index 8b54164871a115813608f3c2e891c460cb705de9..e0934caaa6b264409cb815a7e15e17e5aa10ceca 100644 --- a/src/js/rulesAssistantOptions.tw +++ b/src/js/rulesAssistantOptions.tw @@ -3069,7 +3069,7 @@ window.rulesAssistantOptions = (function() { if (V.club > 0) items.push(["Club", "serve in the club"]); if (V.arcade > 0) items.push(["Arcade", "be confined in the arcade"]); if (V.dairy > 0) items.push(["Dairy", "work in the dairy"]); - if (V.servantQuarters > 0) items.push(["Servant Quarters", "work as a servant"]); + if (V.servantsQuarters > 0) items.push(["Servant Quarters", "work as a servant"]); if (V.masterSuite > 0) items.push(["Master Suite", "serve in the master suite"]); if (V.schoolroom > 0) items.push(["Schoolroom", "learn in the schoolroom"]); if (V.spa > 0) items.push(["Spa", "rest in the spa"]);