diff --git a/js/003-data/policiesData.js b/js/003-data/policiesData.js
index b7ea7c232d85ed7001e4cbc50c4ba932bd0784a4..29761e71ba091b8cf5b82d263327995611940d99 100644
--- a/js/003-data/policiesData.js
+++ b/js/003-data/policiesData.js
@@ -477,16 +477,16 @@ App.Data.Policies.Selection = {
 				text: "you will host regular parties for prominent citizens, an expected social duty of an arcology owner.",
 				activatedText: "you are hosting regular parties for prominent citizens, an expected social duty of an arcology owner.",
 				get note() {
+					let text = `Will cost ${cashFormat(policies.cost())} weekly`;
 					if (V.rep > 18000) {
-						return `Will damage your reputation`;
-					} else {
-						return ``;
+						text += `; neglecting this has begun to damage your reputation`;
 					}
+					return text;
 				},
 				get activatedNote() {
-					let text = `Will cost ${cashFormat(policies.cost())} weekly`;
+					let text = `Costs ${cashFormat(policies.cost())} weekly`;
 					if (V.rep > 18000) {
-						text += `, and prevent damage to your reputation`;
+						text += `, and prevents damage to your reputation`;
 					}
 					return text;
 				}