From 191f1b7f93f6e81daebb60f31046b082944c78dd Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Thu, 13 Feb 2020 00:52:44 -0500
Subject: [PATCH] fix widgets

---
 src/js/useSlave.JS         | 2 +-
 src/utility/miscWidgets.tw | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/js/useSlave.JS b/src/js/useSlave.JS
index 0fe8636fc0f..75b98011bbd 100644
--- a/src/js/useSlave.JS
+++ b/src/js/useSlave.JS
@@ -177,13 +177,13 @@ window.useSlaveDisplay = function(slave) {
 		} /* assigned to dairy or arcade */
 		if (slave.inflation === 0 && slave.bellyImplant < 1500) {
 			if (slave.assignment !== "work in the dairy" && slave.assignment !== "be confined in the arcade" && slave.assignment !== "be confined in the cellblock") {
-				fillFaceOptions.push({text: `Use another slave`, goto: `SlaveOnSlaveFeedingWorkAround`});
 				if (V.buckets === 1) {
 					fillFaceOptions.push({text: `Two liters of slave food`, scene: `forceFeeding`, updateSlave: {inflationType: "food", inflationMethod: 1}});
 					if (slave.pregKnown === 0) {
 						fillFaceOptions.push({text: `A gallon of slave food`, scene: `forceFeeding`, updateSlave: {inflationType: "food", inflationMethod: 2}});
 					}
 				}
+				fillFaceOptions.push({text: `Get another slave to do it`, goto: `SlaveOnSlaveFeedingWorkAround`});
 			}
 		}
 		if (canDoVaginal(slave)) {
diff --git a/src/utility/miscWidgets.tw b/src/utility/miscWidgets.tw
index 8d5149e217e..ea03c0d5609 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)>>
 <</widget>>
 
 /%
@@ -216,7 +216,7 @@ Call as <<SlaveInteractDrugs>>
 Call as <<SlaveInteractFertility>>
 %/
 <<widget "SlaveInteractFertility">>
-
+	<<run SlaveInteractFertility($activeSlave)>>
 <</widget>>
 /%
 Call as <<SlaveInteractSexOption>>
-- 
GitLab