From d9db2c2d22cbc8d2df9cba053050a0aa592b8009 Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Wed, 5 Aug 2020 04:30:20 -0400
Subject: [PATCH] combine in bc

---
 src/data/backwardsCompatibility/backwardsCompatibility.js | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/src/data/backwardsCompatibility/backwardsCompatibility.js b/src/data/backwardsCompatibility/backwardsCompatibility.js
index 41c93c89b87..431be4a1003 100644
--- a/src/data/backwardsCompatibility/backwardsCompatibility.js
+++ b/src/data/backwardsCompatibility/backwardsCompatibility.js
@@ -1200,11 +1200,6 @@ App.Update.globalVariables = function(node) {
 	EconomyDatatypeCleanup();
 	ArcologyDatatypeCleanup();
 
-	// Misspelled variable names
-	{
-		V.edicts.defense.lowerRequirements = V.edicts.defense.lowerRequirements || V.lowerRequirements|| V.lowerRquirements || 0;
-	}
-
 	// Job Fulfillment Center (JFC)
 	V.JFC.order = V.JFC.order || V.JFCOrder || 0;
 	V.JFC.role = V.JFC.role || V.Role || "";
@@ -1288,7 +1283,7 @@ App.Update.globalVariables = function(node) {
 		V.edicts.defense.militaryService = V.edicts.defense.militaryService || V.militaryService || 0;
 		V.edicts.defense.militarizedSociety = V.edicts.defense.militarizedSociety || V.militarizedSociety || 0;
 		V.edicts.defense.militaryExemption = V.edicts.defense.militaryExemption || V.militaryExemption || 0;
-		V.edicts.defense.lowerRequirements = V.edicts.defense.lowerRequirements || V.lowerRequirements || 0;
+		V.edicts.defense.lowerRequirements = V.edicts.defense.lowerRequirements || V.lowerRequirements|| V.lowerRquirements || 0;
 		V.edicts.defense.noSubhumansInArmy = V.edicts.defense.noSubhumansInArmy || V.noSubhumansInArmy || 0;
 		V.edicts.defense.pregExemption = V.edicts.defense.pregExemption || V.pregExemption || 0;
 
-- 
GitLab