diff --git a/js/003-data/policiesData.js b/js/003-data/policiesData.js
index 374e9f8792a65402c204d49d524bd1475285899f..f065a1d89119e7d0ae252d54de2cb2a5cb93e161 100644
--- a/js/003-data/policiesData.js
+++ b/js/003-data/policiesData.js
@@ -1827,7 +1827,7 @@ App.Data.Policies.Selection = {
 			{
 				title: "Neo-Imperial Baronies",
 				titleClass: "lime",
-				text: "the most elite citizens of your arcology can be granted titles as Imperial Barons, overseeing a section of your arcology in your stead. Though they'll collect a portion of the rent from their sections, close and careful micro-management should increase your overall income.",
+				text: "the most elite citizens of your arcology can be granted titles as Imperial Barons, overseeing a section of your arcology in your stead. Though they'll collect a portion of the rent from their sections, close and careful micro-management should increase your overall income. In Eugenicist societies, Barons will be drawn exclusively from the formal societal elite, making them effectively one and the same.",
 				activatedText: "the societal elite of your arcology have been granted high title as Imperial Barons, and given the right to oversee sections of your arcology, collect rents, and enforce your edicts to those who live and work in their managed districts. Though they take a portion of the income for themselves, their careful micro-management of each section of the arcology ensures that the entire system runs more smoothly and that minor issues are solved long before anyone needs to come to you.",
 				get requirements() { return (V.arcologies[0].FSNeoImperialist >= 90); },
 				note: `Will moderately increase rents`
@@ -1928,7 +1928,15 @@ App.Data.Policies.Selection = {
 			{
 				title: "Elite Breeder Eligibility",
 				titleClass: "lime",
-				text: "slaves that pass very strict tests may be permitted for use by the Societal Elite to bear their children.",
+				get text() {
+					let t = `slaves that pass very strict tests may be permitted for use by the  `;
+					if (V.arcologies[0].FSNeoImperialistLaw2) {
+						t += ` Barons to bear their children.`;
+					} else {
+						t += ` Societal Elite to bear their children.`;
+					}
+					return t;
+				}, 
 				get requirements() { return (V.arcologies[0].FSRestartDecoration >= 100 && V.rep >= 5000); },
 				onImplementation: function() {
 					repX(-4000, "policies");