diff --git a/src/js/useSlave.JS b/src/js/useSlave.JS index 142b069fddfe48ac8590e311518468d946f0fe09..4e80e65d58eb4b1996cf4b6648b8e076b4c2e798 100644 --- a/src/js/useSlave.JS +++ b/src/js/useSlave.JS @@ -443,7 +443,7 @@ window.useSlaveDisplay = function(slave) { } // Refresh spans as needed: - SlaveInteractImpreg(slave); + SlaveInteractBloating(slave); SlaveInteractFertility(slave); useSlaveDisplay(slave); return; @@ -452,7 +452,7 @@ window.useSlaveDisplay = function(slave) { return jQuery('#useSlave').empty().append(el); }; -window.SlaveInteractImpreg = function(slave) { +window.SlaveInteractBloating = function(slave) { const { // eslint-disable-next-line no-unused-vars @@ -490,7 +490,7 @@ window.SlaveInteractImpreg = function(slave) { slave.cumSource = 0, slave.milkSource = 0, SetBellySize(slave), - SlaveInteractImpreg(slave), + SlaveInteractBloating(slave), SlaveInteractFertility(slave), useSlaveDisplay(slave); }, @@ -505,7 +505,7 @@ window.SlaveInteractImpreg = function(slave) { slave.inflationType = "none", slave.inflationMethod = 0, SetBellySize(slave), - SlaveInteractImpreg(slave), + SlaveInteractBloating(slave), SlaveInteractFertility(slave), useSlaveDisplay(slave); }, @@ -581,7 +581,7 @@ window.SlaveInteractFertility = function(slave) { let link = App.UI.DOM.link( `Inspect pregnancy`, () => { - SlaveInteractImpreg(slave); + SlaveInteractBloating(slave); }, [], "Analyze Pregnancy" @@ -594,7 +594,7 @@ window.SlaveInteractFertility = function(slave) { `Use contraceptives`, () => { slave.preg = -1, - SlaveInteractImpreg(slave), + SlaveInteractBloating(slave), SlaveInteractFertility(slave); }, [] @@ -605,7 +605,7 @@ window.SlaveInteractFertility = function(slave) { `Let ${him} get pregnant`, () => { slave.preg = 0, - SlaveInteractImpreg(slave), + SlaveInteractBloating(slave), SlaveInteractFertility(slave); }, [] @@ -620,7 +620,7 @@ window.SlaveInteractFertility = function(slave) { slave.labor = 1, slave.induce = 1, V.birthee = 1; - SlaveInteractImpreg(slave), + SlaveInteractBloating(slave), SlaveInteractFertility(slave); }, [], @@ -631,7 +631,7 @@ window.SlaveInteractFertility = function(slave) { link = App.UI.DOM.link( `Give ${him} a cesarean section`, () => { - SlaveInteractImpreg(slave); + SlaveInteractBloating(slave); }, [], "csec" diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw index 28d867fb9ae5d71ca7dcd3eb783a6955b44d1fe7..0a1e537992c08ceb2a19b05540c549d0c0168389 100644 --- a/src/uncategorized/slaveInteract.tw +++ b/src/uncategorized/slaveInteract.tw @@ -1025,7 +1025,7 @@ Aphrodisiacs: <span id="aphrodisiacs"><strong><<if $activeSlave.aphrodisiacs > 1 <</if>> <span id="bloating"></span> -<script>SlaveInteractImpreg(V.activeSlave)</script> +<script>SlaveInteractBloating(V.activeSlave)</script> Hormones: <strong><span id="hormones"> <<if $activeSlave.hormones == -2>>intensive male<<elseif $activeSlave.hormones == -1>>male<<elseif $activeSlave.hormones == 2>>intensive female<<elseif $activeSlave.hormones == 1>>female<<else>>none<</if>></span></strong>. diff --git a/src/utility/miscWidgets.tw b/src/utility/miscWidgets.tw index ea03c0d56098fa720f1948128cb6ab01953a8721..381134ed64f378cc44a825d4c29ab84be4eeb425 100644 --- a/src/utility/miscWidgets.tw +++ b/src/utility/miscWidgets.tw @@ -14,7 +14,7 @@ Allows for dynamic updating of the next button in the storyCaption (left side-ba Call as <<SlaveInteractImpreg>> %/ <<widget "SlaveInteractImpreg">> - <<run SlaveInteractImpreg($activeSlave)>> + <<run SlaveInteractBloating($activeSlave)>> <</widget>> /%