From efa6600e298ac1a4b6e1a28de1b0d6d6e61ddcfc Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Wed, 29 Jan 2020 21:09:25 -0500
Subject: [PATCH] fix

---
 src/uncategorized/randomNonindividualEvent.tw | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/uncategorized/randomNonindividualEvent.tw b/src/uncategorized/randomNonindividualEvent.tw
index 061ea57d565..6d4e27fd935 100644
--- a/src/uncategorized/randomNonindividualEvent.tw
+++ b/src/uncategorized/randomNonindividualEvent.tw
@@ -622,20 +622,20 @@
 		<<if $rep > 16000 && ((random(1,100) < $rep/1000) || $cheatMode) && $cash >= 100000>>
 			<<set $recruit.push("forbidden love")>>
 		<</if>>
-		<<if ($rep/400) > random(1,100) || $cheatMode>>
+		<<if (($rep/400) > random(1,100)) || $cheatMode>>
 			<<set $RecETSevent.push("identical pair")>>
 		<</if>>
-		<<if ($rep/400) > random(1,100) || $cheatMode>>
+		<<if (($rep/400) > random(1,100)) || $cheatMode>>
 			<<set $RecETSevent.push("posh mother daughter")>>
 		<</if>>
 		<<if $seeIncest != 0>>
-			<<if ($rep/400) > random(1,100) || $cheatMode>>
+			<<if (($rep/400) > random(1,100)) || $cheatMode>>
 				<<set $RecETSevent.push("incest sister sister")>>
 			<</if>>
-			<<if ($rep/400) > random(1,100) || $cheatMode>>
+			<<if (($rep/400) > random(1,100)) || $cheatMode>>
 				<<set $RecETSevent.push("incest twin sister")>>
 			<</if>>
-			<<if ($rep/400) > random(1,100) || $cheatMode>>
+			<<if (($rep/400) > random(1,100)) || $cheatMode>>
 				<<set $RecETSevent.push("incest mother daughter")>>
 			<</if>>
 		<</if>>
-- 
GitLab