From 890c5cd4128293ea91073855169646071e6fa8f3 Mon Sep 17 00:00:00 2001
From: lowercase-donkey <lowercasedonkey@gmail.com>
Date: Thu, 27 Jun 2019 22:40:56 -0400
Subject: [PATCH] option types fixed

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

diff --git a/src/uncategorized/options.tw b/src/uncategorized/options.tw
index eeb24b70788..e241ee008b8 100644
--- a/src/uncategorized/options.tw
+++ b/src/uncategorized/options.tw
@@ -132,8 +132,8 @@ This save was created using FC version $ver build $releaseID.
 
 		<<options $showNeighborDetails>>
 			Economic report neighbor details such as trade impacts on culture are
-			<<option 1 "Enabled">>
-			<<option 0 "Disabled">>
+			<<option true "Enabled">>
+			<<option false "Disabled">>
 		<</options>>
 
 		<<options $formatNumbers>>
@@ -188,8 +188,8 @@ This save was created using FC version $ver build $releaseID.
 
 		<<options $showTipsFromEncy>>
 			Tips from the Encyclopedia are
-			<<option true "Enabled">>
-			<<option false "Disabled">>
+			<<option 1 "Enabled">>
+			<<option 0 "Disabled">>
 		<</options>>
 
 		<<options $useSummaryCache>>
@@ -329,8 +329,8 @@ This save was created using FC version $ver build $releaseID.
 				
 				<<options $showClothingErection>>
 					Clothing erection bulges
-					<<option 1 "Enabled">>
-					<<option 0 "Disabled">>
+					<<option true "Enabled">>
+					<<option false "Disabled">>
 				<</options>>
 			<<elseif $seeImages === 0>>
 				<<options $seeMainFetishes>>
@@ -341,8 +341,8 @@ This save was created using FC version $ver build $releaseID.
 			<<elseif $seeImages === 3>>
 				<<options $showClothingErection>>
 					Clothing erection bulges
-					<<option 1 "Enabled">>
-					<<option 0 "Disabled">>
+					<<option true "Enabled">>
+					<<option false "Disabled">>
 					<<comment>>
 					@@.red;Git compiled only, no exceptions.@@
 				<</options>>
@@ -550,8 +550,8 @@ This save was created using FC version $ver build $releaseID.
 
 			<<options $showDistantRelatives>>
 				Distant relatives such as aunts, nieces and cousins are
-				<<option 1 "Shown">>
-				<<option 0 "Hidden">>
+				<<option true "Shown">>
+				<<option false "Hidden">>
 			<</options>>
 		<</if>>
 	</div>
-- 
GitLab