From cbadea2d4fc928cdd12c664c476e8e88633b1910 Mon Sep 17 00:00:00 2001 From: Skriv <skrivelese@gmail.com> Date: Fri, 21 Jun 2019 21:41:09 +0200 Subject: [PATCH] VCheck --- devNotes/Useful JS Function Documentation.txt | 10 +++++----- src/js/rulesAssistantOptions.js | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/devNotes/Useful JS Function Documentation.txt b/devNotes/Useful JS Function Documentation.txt index db3ada5e282..6af61a39b62 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 43ead43cd73..26fc203c8b9 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()); -- GitLab