diff --git a/src/facilities/penthouse/HGSelect.js b/src/facilities/penthouse/HGSelect.js
index 505a6105cc5781b4a394200e489f3287840b0df3..02eb06ef2e6cad59643d8406b7fb23e9f5c52e55 100644
--- a/src/facilities/penthouse/HGSelect.js
+++ b/src/facilities/penthouse/HGSelect.js
@@ -42,6 +42,8 @@ App.Facilities.HGSelect = function() {
 			r.push(`${HGName} will softern flaws into quirks.`);
 		} else if (V.headGirlOverridesQuirks) {
 			r.push(`${HGName} will override quirks.`);
+		} else {
+			r.push(`${HGName} will ignore flaws.`);
 		}
 
 		links.push(App.UI.DOM.link(" Override quirks", () => {
@@ -66,6 +68,14 @@ App.Facilities.HGSelect = function() {
 		[], passage()
 		));
 		
+		links.push(App.UI.DOM.link(" Ignore flaws", () => {
+			V.headGirlTrainsFlaws = 0;
+			V.headGirlSoftensFlaws = 0;
+			V.headGirlOverridesQuirks = 0;
+		},
+		[], passage()
+		));
+		
 		r.push(App.UI.DOM.generateLinksStrip(links));
 		App.Events.addNode(f, r, "div", "indent");