diff --git a/src/Mods/SecExp/js/secExp.js b/src/Mods/SecExp/js/secExp.js
index 450ee29f2184604af0d3a03908ad633c0a5e6f15..9592dbabc15106671b00b2a03ffda7b307d00ddf 100644
--- a/src/Mods/SecExp/js/secExp.js
+++ b/src/Mods/SecExp/js/secExp.js
@@ -46,7 +46,7 @@ App.SecExp.generator = (function() {
 		if (random(1, 100) > attackChance) { // Rolls to see if attack happens this week
 			V.SecExp.battles.lastEncounterWeeks++;
 		} else {
-			let type, terrain, troops, equip;
+			let type, terrain, troops, equip = 0, L = 0;
 			V.attackThisWeek = 1;
 			V.SecExp.battles.lastEncounterWeeks = 0;
 			let raider = 25, oldWorld = 25, freeCity = 25, free = 25; // type is the chance out of 100 of an attack of that type happening
@@ -110,12 +110,16 @@ App.SecExp.generator = (function() {
 			const roll = random(1, 100); // makes the actual roll
 			if (roll <= raider) {
 				type = "raiders";
+				troops = random(40, 80); L = 1;
 			} else if (roll <= raider + oldWorld) {
 				type = "old world";
+				troops = random(25, 50);
 			} else if (roll <= raider + oldWorld + freeCity) {
 				type = "free city";
+				troops = random(20, 40);
 			} else if (roll <= raider + oldWorld + freeCity + free) {
 				type = "freedom fighters";
+				troops = random(30, 60);
 			}
 
 			if (V.terrain === "urban") {
@@ -132,45 +136,29 @@ App.SecExp.generator = (function() {
 				terrain = "error";
 			}
 
-			let L = 0;
-			if (type === "raiders") {
-				troops = random(40, 80); L = 1;
-			} else if (type === "free city") {
-				troops = random(20, 40);
-			} else if (type === "old world") {
-				troops = random(25, 50);
-			} else if (type === "freedom fighters") {
-				troops = random(30, 60);
-			}
 			if (V.week < 30) {
 				troops *= random(1, 2); // troops *= Math.trunc(random( (1*(1.01+(V.week/100))), (2*(1.01+(V.week/100))) ))) {
-			} else if (V.week < 60) {
-				troops *= random(1, 3); // troops *= Math.trunc(random( (1*(1.01+(V.week/200))), (3*(1.01+(V.week/200))) ))) {
-			} else if (V.week < 90) {
-				troops *= random(2, 3); // troops *= Math.trunc(random( (2*(1.01+(V.week/300))), (3*(1.01+(V.week/300))) ))) {
-			} else if (V.week < 120) {
-				troops *= random(2, 4); // troops *= Math.trunc(random( (2*(1.01+(V.week/400))), (4*(1.01+(V.week/400))) ))) {
-			} else {
-				troops *= random(3, 5);
 			}
 			if (V.week < 60) {
+				troops *= random(1, 3); // troops *= Math.trunc(random( (1*(1.01+(V.week/200))), (3*(1.01+(V.week/200))) ))) {
 				equip = random(0, 1);
 			} else if (V.week < 90) {
+				troops *= random(2, 3); // troops *= Math.trunc(random( (2*(1.01+(V.week/300))), (3*(1.01+(V.week/300))) ))) {
 				equip = random(0, 3-L); // "raiders" equip = random(0,2)) {
 			} else if (V.week < 120) {
+				troops *= random(2, 4); // troops *= Math.trunc(random( (2*(1.01+(V.week/400))), (4*(1.01+(V.week/400))) ))) {
 				equip = random(1-L, 3); // "raiders" equip = random(0,3)) {
 			} else {
+				troops *= random(3, 5);
 				equip = random(2-L, 4-L); // "raiders" equip = random(1,3)) {
 			}
 
 			if (V.SecExp.settings.battle.major.enabled === 1) { // major battles have a 50% chance of firing after week 120
-				if (V.week >= 120 || V.SecExp.settings.battle.major.force === 1) {
-					if (random(1, 100) >= 50 || V.SecExp.settings.battle.major.force === 1) {
-						V.majorBattle = 1;
-						const sfActive = V.SF.Toggle && V.SF.Active >= 1;
-						troops = sfActive ? random(4, 6) : random(2, 3);
-						equip = sfActive ? either(3, 4) : either(2, 3, 4);
-					}
+				if ((V.week >= 120 && random(1, 100) >= 50) || V.SecExp.settings.battle.major.force === 1) {
+					V.majorBattle = 1;
+					const sfActive = V.SF.Toggle && V.SF.Active >= 1;
+					troops *= sfActive ? random(4, 6) : random(2, 3);
+					equip = sfActive ? either(3, 4) : either(2, 3, 4);
 				}
 			}