diff --git a/src/js/rulesAssistantOptions.js b/src/js/rulesAssistantOptions.js
index 9e380a413170d84411b7cd9e70b6749b288eddb8..f4635e1a2784a4af8f9b8540317f0eb67ca4bb04 100644
--- a/src/js/rulesAssistantOptions.js
+++ b/src/js/rulesAssistantOptions.js
@@ -359,7 +359,7 @@ window.rulesAssistantOptions = (function() {
 			} else {
 				selected = this.children.filter(listItem => this.dataEqual(listItem.data, dataValue));
 			}
-			if (selected.length > 1) { debugger; throw Error(`Multiple shortcuts matched ${JSON.stringify(dataValue)}`); }
+			if (selected.length > 1) { throw Error(`Multiple shortcuts matched ${JSON.stringify(dataValue)}`); }
 			if (selected.length === 1) {
 				const listItem = selected[0];
 				listItem.select(false);
@@ -2309,8 +2309,7 @@ window.rulesAssistantOptions = (function() {
 			if (V.arcologies[0].FSAssetExpansionistResearch === 1) {
 				drugs.push(["hyper breast injections"]);
 			}
-			if (V.dispensary)
-			{
+			if (V.dispensary) {
 				drugs.push(["nipple enhancers"]);
 			}
 			if (V.purchasedSagBGone === 1) {
@@ -2938,7 +2937,11 @@ window.rulesAssistantOptions = (function() {
 				["nice", 1],
 				["gorgeous", 2],
 				["color-coordinate with hair", 3],
-				["slutty", 4]
+				["slutty", 4],
+				["neon", 5],
+				["neon color-coordinate with hair", 6],
+				["metallic", 7],
+				["metallic color-coordinate with hair", 8]
 			];
 			super("Makeup", pairs);
 			this.setValue(current_rule.set.makeup);
@@ -2969,6 +2972,7 @@ window.rulesAssistantOptions = (function() {
 	class HairLengthList extends ListSelector {
 		constructor() {
 			const pairs = [
+				["shaved", 0],
 				["very short", 5],
 				["short", 10],
 				["shoulder length", 30],