diff --git a/devNotes/Useful JS Function Documentation.txt b/devNotes/Useful JS Function Documentation.txt index db3ada5e282b592249d9a2b0d26d3e7240bc68c3..6af61a39b62511c24abb6a59fb2a6c0661055f61 100644 --- a/devNotes/Useful JS Function Documentation.txt +++ b/devNotes/Useful JS Function Documentation.txt @@ -284,15 +284,15 @@ Sex Functions: knockMeUp(actor, chance, hole, fatherID, displayOverride) - Attempts to impregnate actor. -AnalVCheck(count) - Increments $activeSlave's anal count by count and attempts to take virginity. Defaults to 1. +VCheck.Anal(count) - Increments $activeSlave's anal count by count and attempts to take virginity. Defaults to 1. -VaginalVCheck(count) - Increments $activeSlave's vaginal count by count and attempts to take virginity. Defaults to 1. +VCheck.Vaginal(count) - Increments $activeSlave's vaginal count by count and attempts to take virginity. Defaults to 1. -VaginalVCheck(countAnal, countBoth) - Attempts to increment $activeSlave's anal count by countAnal and attempts to increment vaginal by countBoth. Defaults to 1. Attempts to take virginities. +VCheck.Both(countAnal, countBoth) - Attempts to increment $activeSlave's anal count by countAnal and attempts to increment vaginal by countBoth. Defaults to 1. Attempts to take virginities. -SimpleVCheck(count) - Calls either VaginalVCheck or AnalVCheck count times. +VCheck.Simple(count) - Calls either VaginalVCheck or VCheck.Anal() count times. -PartnerVCheck(countAnal, countBoth) - Attempts to increment $partner's anal count by countAnal and attempts to increment vaginal by countBoth. Defaults to 1. Attempts to take virginities. +VCheck.Partner(countAnal, countBoth) - Attempts to increment $partner's anal count by countAnal and attempts to increment vaginal by countBoth. Defaults to 1. Attempts to take virginities. SimpleSexAct(slave, count) - Runs a player on slave sex act count times. (randomly chooses hole based off availability.) diff --git a/src/js/rulesAssistantOptions.js b/src/js/rulesAssistantOptions.js index 43ead43cd73d59ddc0466ac98107e649d45b653b..26fc203c8b9359711d15e25580028c60b1f0fd3f 100644 --- a/src/js/rulesAssistantOptions.js +++ b/src/js/rulesAssistantOptions.js @@ -1531,7 +1531,7 @@ window.rulesAssistantOptions = (function() { if (V.enema === 1) { this.appendChild(new EnemaList()); } - this.appendChild(new WeightEditor()) + this.appendChild(new WeightEditor()); this.appendChild(new DietList()); this.appendChild(new DietGrowthList()); this.appendChild(new DietBaseList());