From 93dc42518bdef70ce6fc7a1631f87dc14426f45f Mon Sep 17 00:00:00 2001
From: Svornost <11434-svornost@users.noreply.gitgud.io>
Date: Wed, 1 Jan 2020 16:39:28 -0800
Subject: [PATCH] SanityCheck fixes

---
 src/uncategorized/options.tw | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/src/uncategorized/options.tw b/src/uncategorized/options.tw
index 70d5a5cb14c..98fb2084220 100644
--- a/src/uncategorized/options.tw
+++ b/src/uncategorized/options.tw
@@ -883,7 +883,6 @@ This save was created using FC version $ver build $releaseID.
 			</td>
 			</tr>
 
-			</tr>
 			</table>
 		<</if>> /* closes SecExp check*/
 	</div>
@@ -987,10 +986,10 @@ This save was created using FC version $ver build $releaseID.
 
 			<br>
 			<<link "Add slaves" "Options">> /*Will work to a limited degree, minimums and maximums for slaves are set through population*/
-				<<set $NPCSlaves = Math.max($NPCSlaves + 200, 0>>
+				<<set $NPCSlaves = Math.max($NPCSlaves + 200, 0)>>
 			<</link>>
 			| <<link "Remove slaves" "Options">> /*Will work to a limited degree*/
-				<<set $NPCSlaves = Math.max($NPCSlaves - 200, 0>>
+				<<set $NPCSlaves = Math.max($NPCSlaves - 200, 0)>>
 			<</link>>
 			%/
 
-- 
GitLab