From 8edf7ffe55d925dddbe43196d0f5838301b22aec Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Mon, 14 Sep 2020 00:31:27 -0400
Subject: [PATCH] Fix broken milkmaid check

---
 src/uncategorized/industrialDairyAssignmentScene.tw | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/uncategorized/industrialDairyAssignmentScene.tw b/src/uncategorized/industrialDairyAssignmentScene.tw
index 055c0d70562..22e07ab7453 100644
--- a/src/uncategorized/industrialDairyAssignmentScene.tw
+++ b/src/uncategorized/industrialDairyAssignmentScene.tw
@@ -237,10 +237,10 @@ When $activeSlave.slaveName reports to the dairy, it's to the <<if canSee($activ
 	<<else>>
 		$He turns and tries to run, so
 	<</if>>
-	<<if (_S.Milkmaid == 0)>>
-		you are
-	<<else>>
+	<<if ($MilkmaidID != 0)>>
 		_S.Milkmaid.slaveName is
+	<<else>>
+		you are
 	<</if>>
 	obliged to
 	<<if (!isAmputee($activeSlave))>>
@@ -275,10 +275,10 @@ When $activeSlave.slaveName reports to the dairy, it's to the <<if canSee($activ
 	<<else>>
 		$He turns and tries to run, so
 	<</if>>
-	<<if (_S.Milkmaid == 0)>>
-		you are
-	<<else>>
+	<<if ($MilkmaidID != 0)>>
 		_S.Milkmaid.slaveName is
+	<<else>>
+		you are
 	<</if>>
 	obliged to
 	<<if (!isAmputee($activeSlave))>>
-- 
GitLab