From f0976dca62dab421bc6eb82e9d2315521ed8dd63 Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Thu, 23 Jul 2020 20:33:49 -0400
Subject: [PATCH] fix choice

---
 src/interaction/slaveInteract.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/interaction/slaveInteract.js b/src/interaction/slaveInteract.js
index 4827bb108b9..aa4bd94453b 100644
--- a/src/interaction/slaveInteract.js
+++ b/src/interaction/slaveInteract.js
@@ -2246,14 +2246,14 @@ App.UI.SlaveInteract.rules = function(slave) {
 		];
 
 		if (slave.lactation === 0) {
-			choice.push(
+			choices.push(
 				{
 					title: "Induce lactation",
 					value: "induce",
 				}
 			);
 		} else {
-			choice.push(
+			choices.push(
 				{
 					title: "Maintain lactation",
 					value: "maintain",
-- 
GitLab