diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt index c5bfcd12e4a6aba110f991908bc459c0a233f68d..1c304e360c21c509cc0792499c45892d51a6fdd4 100644 --- a/devNotes/VersionChangeLog-Premod+LoliMod.txt +++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt @@ -4,6 +4,9 @@ 8/05/2018 + 21 + -added height comparison to the RA + 20 -fixed an unlikely occurance where labor could be preepmpted causing oddities with birth -fixes diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt index 32a979c63069e1eb9b4cc685c309d5f6ea15e78b..33da116998c1febb9f5bd853510e1d3f28b21008 100644 --- a/devNotes/twine JS.txt +++ b/devNotes/twine JS.txt @@ -14445,6 +14445,7 @@ window.rulesAssistantOptions = (function() { ["Trust", "trust"], ["Health", "health"], ["Sex drive", "energy"], + ["Height", "height"], ["Weight", "weight"], ["Age", "actualAge"], ["Body Age", "physicalAge"], @@ -14490,6 +14491,7 @@ window.rulesAssistantOptions = (function() { "trust", "health", "energy", + "height", "weight", "actualAge", "physicalAge", diff --git a/src/js/rulesAssistantOptions.tw b/src/js/rulesAssistantOptions.tw index 25b1a03afdb68866a89f93f0149c5e98267fd1ae..db0f44ec5355c15ea611e5aa937c255f710bf4ad 100644 --- a/src/js/rulesAssistantOptions.tw +++ b/src/js/rulesAssistantOptions.tw @@ -523,6 +523,7 @@ window.rulesAssistantOptions = (function() { ["Trust", "trust"], ["Health", "health"], ["Sex drive", "energy"], + ["Height", "height"], ["Weight", "weight"], ["Age", "actualAge"], ["Body Age", "physicalAge"], @@ -568,6 +569,7 @@ window.rulesAssistantOptions = (function() { "trust", "health", "energy", + "height", "weight", "actualAge", "physicalAge",