diff --git a/js/003-data/policiesData.js b/js/003-data/policiesData.js
index 38616e081e0bab3e0c66854aeed438b7bc9beb15..f56724711a4e5960b54004cebd3682678ceb6cd3 100644
--- a/js/003-data/policiesData.js
+++ b/js/003-data/policiesData.js
@@ -664,10 +664,10 @@ App.Data.Policies.Selection = {
 			{
 				title: "No Menial Retirement Plan",
 				activatedTitle: "",
-				text: " without defining a retirement age for menial slaves they will remain slaves until death or freed otherwise.",
+				text: "without defining a retirement age for menial slaves they will remain slaves until death or freed otherwise.",
 				activatedText: "",
 				policy: "policies.retirement.menial2Citizen",
-				requirements: function() { return "hide if activated"; },
+				hide:{button: 1, ifActivated: 1, ifDeactivated: 0}
 			}
 		],
 		[
@@ -694,7 +694,7 @@ App.Data.Policies.Selection = {
 				},
 				activatedText: "",
 				policy: "policies.retirement.menial2Citizen",
-				requirements: function() { return "hide if activated"; },
+				hide:{button: 1, ifActivated: 1, ifDeactivated: 0}
 			}
 		],
 		[
diff --git a/src/interaction/policies/policies.js b/src/interaction/policies/policies.js
index b84355e4565cb531ac50994f3b7ec3f75787dd28..da15f63e84d362d189260858eb46227c331143a5 100644
--- a/src/interaction/policies/policies.js
+++ b/src/interaction/policies/policies.js
@@ -127,6 +127,9 @@ globalThis.policy = function(category) {
 			// apply
 			for (let i = 0; i < selectedPolicy.length; i++) {
 				const p = selectedPolicy[i];
+				if (p.hasOwnProperty("hide") && p.hide.ifDeactivated === 1) {
+					continue;
+				}
 				testArray(p);
 				div = document.createElement("div");
 				span = document.createElement("span");
@@ -143,22 +146,24 @@ globalThis.policy = function(category) {
 				// link
 				if (policyValue === 0) {
 					let enable;
-					if (i === 1 && selectedPolicy.length === 2) {
+					if (p.hasOwnProperty("enable")) {
+						enable = p.enable;
+					} else if (i === 1 && selectedPolicy.length === 2) {
 						enable = -1;
 					} else {
 						enable = i + 1;
 					}
-					if (p.hasOwnProperty("requirements")) {
+					if (p.hasOwnProperty("hide") && (p.hide.button === 1)) {
+						el.append(div);
+					} else if (p.hasOwnProperty("requirements")) {
 						const req = p.requirements();
 						if (req === true) {
 							implement(p, enable);
-						} else if (p.requirements() !== "hide") {
+						} else {
 							link = App.UI.DOM.disabledLink("Implement", [`You do not meet the requirments, or passed a conflicting policy already`]);
 							link.style.color = "white";
 							div.append(link);
 							el.append(div);
-						} else {
-							el.append(div);
 						}
 					} else {
 						implement(p, enable);
@@ -180,8 +185,8 @@ globalThis.policy = function(category) {
 				i = policyValue - 1;
 			}
 			const p = selectedPolicy[i];
-			if (p.hasOwnProperty("requirements")) {
-				if (p.requirements() === "hide if activated") {
+			if (p.hasOwnProperty("hide")) {
+				if (p.hide.ifActivated === 1) {
 					return el;
 				}
 			}
@@ -233,7 +238,7 @@ globalThis.policy = function(category) {
 		function repeal(p) {
 			// repeal
 			let check = canAfford();
-			if (!p.hasOwnProperty("requirements") || p.requirements() !== "hide") {
+			if (!(p.hasOwnProperty("hide") && p.hide.button === 1)) {
 				if (check === true) {
 					link = App.UI.DOM.link(
 						"Repeal",