From d8b1a4d225aa71fc613cae7b17e2c091c0eaa483 Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Mon, 4 May 2020 21:28:06 -0400
Subject: [PATCH] fixes from autoformat

---
 src/interaction/slaveInteract.js | 40 ++++++++++++++++----------------
 1 file changed, 20 insertions(+), 20 deletions(-)

diff --git a/src/interaction/slaveInteract.js b/src/interaction/slaveInteract.js
index 7b155570b02..7c662287a64 100644
--- a/src/interaction/slaveInteract.js
+++ b/src/interaction/slaveInteract.js
@@ -57,34 +57,34 @@ App.UI.SlaveInteract.modify = function(slave) {
 
 	makeRoomLink(el, "Auto salon", "Salon", ' Modify hair (color, length, style), nails, and even skin color.',
 		() => {
-			V.activeSlave = slave,
-				V.degradation = 0,
-				V.primaryHairColor = "",
-				V.secondaryHairColor = "",
-				V.primaryEarColor = "",
-				V.secondaryEarColor = "",
-				V.primaryTailColor = "",
-				V.secondaryTailColor = "",
-				V.artificialEyeColor = "",
-				V.artificialEyeShape = "",
-				V.artificialEyeFill = "",
-				V.tattooChoice = "",
-				V.piercingLevel = "";
+			V.activeSlave = slave;
+			V.degradation = 0;
+			V.primaryHairColor = "";
+			V.secondaryHairColor = "";
+			V.primaryEarColor = "";
+			V.secondaryEarColor = "";
+			V.primaryTailColor = "";
+			V.secondaryTailColor = "";
+			V.artificialEyeColor = "";
+			V.artificialEyeShape = "";
+			V.artificialEyeFill = "";
+			V.tattooChoice = "";
+			V.piercingLevel = "";
 		}
 	);
 
 	makeRoomLink(el, "Body mod studio", "Body Modification", ' Mark your slave with piercings, tattoos, brands or even scars.',
 		() => {
-			V.activeSlave = slave,
-				V.degradation = 0,
-				V.tattooChoice = undefined;
+			V.activeSlave = slave;
+			V.degradation = 0;
+			V.tattooChoice = undefined;
 		},
 	);
 
 	makeRoomLink(el, "Remote surgery", "Remote Surgery", ` Surgically modify your slave with state of the art plastic surgery and more. Alter ${his} senses, skeletal structure, organs, and even more.`,
 		() => {
-			V.activeSlave = slave,
-				V.degradation = 0;
+			V.activeSlave = slave;
+			V.degradation = 0;
 		}
 	);
 
@@ -92,8 +92,8 @@ App.UI.SlaveInteract.modify = function(slave) {
 	if (V.prostheticsUpgrade > 0) {
 		makeRoomLink(el, "Configure cybernetics", "Prosthetics Configuration", ` Configure prosthetics, if ${he} has been surgically implanted with interfaces that support it.`,
 			() => {
-				V.activeSlave = slave,
-					V.prostheticsConfig = "main";
+				V.activeSlave = slave;
+				V.prostheticsConfig = "main";
 			}
 		);
 	}
-- 
GitLab