diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt
index 3c8bb009d07632ef7aa72897d3d3a21fd7dfe0ba..b5c31f2b57801671ba4d8bd3db27505dcaa519ec 100644
--- a/devNotes/VersionChangeLog-Premod+LoliMod.txt
+++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt
@@ -3,6 +3,12 @@
 0.10.7.1-0.7.x
 
 8/28/2018
+	
+	7
+	-fixes and code cleanup
+
+	6
+	-fixes
 
 	5
 	-fixes
diff --git a/src/uncategorized/newGamePlus.tw b/src/uncategorized/newGamePlus.tw
index c9f3ee02ad9576420d7a7057d292aa27bd00c952..568ae43112baaf5c775e65830d020c53453b61a4 100644
--- a/src/uncategorized/newGamePlus.tw
+++ b/src/uncategorized/newGamePlus.tw
@@ -1,26 +1,17 @@
 :: New Game Plus [nobr]
-<<set $ui = "start">> <<unset $Flag>>
-
-<<if ndef $slavesToImport>> <<set $slavesToImport = 0>> <</if>>
 
-<<if ndef $slavesToImportMax>> <<set $slavesToImportMax = 5>> <</if>>
-
-<<silently>> <<include "Backwards Compatibility">> <</silently>>
+<<set $ui = "start">> <<unset $Flag>>
 
+<<if ndef $slavesToImport>><<set $slavesToImport = 0>><</if>>
+<<if ndef $slavesToImportMax>><<set $slavesToImportMax = 5>><</if>>
+<<silently>><<include "Backwards Compatibility">><</silently>>
 <<set _fee = 50000+($slavesToImportMax*10000)>>
 
 You have decided to start over and will be able to take a few things with you: a few slaves, a small fraction of your current reserves of money, and possibly even your experience as an arcology owner, which will give you a very powerful career background. Many of your other customizations and settings will be carried over as the defaults for your new game, but can be revised freely.
 
 <br><br>
 
-You
-<<if $cash >= _fee>>
-	have
-<<else>>
-	lack
-<</if>>
-the funds to  bring more than $slavesToImportMax slaves with you (or your equivalent) to a new arcology.
-It will cost @@.yellowgreen;<<print cashFormat(_fee)>>@@ to insure another slave's safe transfer.
+You <<if $cash >= _fee>>have<<else>>lack<</if>> the funds to  bring more than $slavesToImportMax slaves with you (or your equivalent) to a new arcology. It will cost @@.yellowgreen;<<print cashFormat(_fee)>>@@ to insure another slave's safe transfer.
 <<if $cash >= _fee>>
 	You have @@.yellowgreen;<<print cashFormat($cash)>>@@ to spend.
 	<br>[[Increase slave import capacity by 1.|New Game Plus][$cash -= _fee, $slavesToImportMax++]]
@@ -73,7 +64,7 @@ Select up to $slavesToImportMax slaves to be imported into a new game and then c
 <</if>>
 <<if $slavesToImport >= $slavesToImportMax>>
 <<else>>
-		<<if $slaves.length > $slavesToImport>> <br><br>
+	<<if $slaves.length > $slavesToImport>> <br><br>
 		''These slaves are available to be imported into the new game:''
 		<<set $Flag = 0>> <<include "Slave Summary">>
 	<</if>>