From 46e7252f9768b866d2ee135930e9ab9109470f8c Mon Sep 17 00:00:00 2001 From: DCoded <dsoloha@live.com> Date: Sat, 4 May 2019 10:37:21 -0400 Subject: [PATCH] Comment formatting --- src/art/vector/VectorArtJS.js | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/src/art/vector/VectorArtJS.js b/src/art/vector/VectorArtJS.js index be2717dd131..e407e3c9298 100644 --- a/src/art/vector/VectorArtJS.js +++ b/src/art/vector/VectorArtJS.js @@ -855,7 +855,7 @@ window.VectorArt = (function() { case "striped underwear": case "uncomfortable straps": break; /* do nothing for these choices */ - /* manually handle special cases */ + /* manually handle special cases */ case "a slutty schutzstaffel uniform": r += jsInclude("Art_Vector_Belly_Outfit_SchutzstaffelUniform"); break; @@ -1233,10 +1233,10 @@ window.VectorArt = (function() { function setOutfitColor() { /* TODO: rewrite all textual descriptions not to explicitly mention the latex being of black color. */ if (wearingLatex === true || slave.clothes === "a cybersuit") { - outfitBaseColour = slave.clothingBaseColor || "#515351"; - } else if (slave.clothes === "a comfortable bodysuit") { /* use custom color, or use default latex color */ - outfitBaseColour = slave.clothingBaseColor || "#464646"; - } /* use custom color, or use default bodysuit color */ + outfitBaseColour = slave.clothingBaseColor || "#515351"; /* use custom color, or use default latex color */ + } else if (slave.clothes === "a comfortable bodysuit") { + outfitBaseColour = slave.clothingBaseColor || "#464646"; /* use custom color, or use default bodysuit color */ + } /* head addons */ if (slave.collar === "porcelain mask") { @@ -1267,12 +1267,14 @@ window.VectorArt = (function() { T.bellySkinStyle = undefined; /* BEGIN SKIN COLOR OVERRIDES FOR LATEX CLOTHING EMULATION */ - if (slave.clothes === "a Fuckdoll suit") { /* slave is a fuckdoll - display all skin as if it was black rubber */ + if (slave.clothes === "a Fuckdoll suit") { + /* slave is a fuckdoll - display all skin as if it was black rubber */ T.skinColour = outfitBaseColour; T.areolaStyle = "fill:rgba(81,83,81,1);"; T.labiaStyle = T.areolaStyle; T.bellybuttonStyle = T.areolaStyle; - } else if (slave.clothes === "restrictive latex") { /* slave wears restrictive latex - display most skin as if it was rubber */ + } else if (slave.clothes === "restrictive latex") { + /* slave wears restrictive latex - display most skin as if it was rubber */ /* nice latex does not cover any privates. */ T.boobSkinStyle = "fill:" + T.skinColour + ";"; T.penisSkinStyle = "fill:" + T.skinColour + ";"; @@ -1281,16 +1283,19 @@ window.VectorArt = (function() { /* rest of body is covered in latex */ T.skinColour = outfitBaseColour; T.bellybuttonStyle = outfitBaseColour; - } else if (slave.clothes === "a latex catsuit") { /* nice latex does not cover head. */ + } else if (slave.clothes === "a latex catsuit") { + /* nice latex does not cover head. */ T.headSkinStyle = "fill:" + T.skinColour + ";"; /* rest of body is covered in latex */ T.skinColour = outfitBaseColour; /* catsuit covers areolae and crotch, too */ T.bellybuttonStyle = outfitBaseColour; - } else if (slave.clothes === "a cybersuit") { /* rest of body is covered in latex */ + } else if (slave.clothes === "a cybersuit") { + /* rest of body is covered in latex */ T.skinColour = outfitBaseColour; T.bellybuttonStyle = outfitBaseColour; - } else if (slave.clothes === "a comfortable bodysuit") { /* nice bodysuit does not cover head. */ + } else if (slave.clothes === "a comfortable bodysuit") { + /* nice bodysuit does not cover head. */ T.headSkinStyle = "fill:" + T.skinColour + ";"; /* rest of body is covered in bodysuit */ T.skinColour = outfitBaseColour; @@ -1756,8 +1761,7 @@ window.VectorArt = (function() { case "a latex catsuit": case "body oil": case "restrictive latex": - if (V.seeVectorArtHighlights === 1) { - /* special case for shiny clothing */ + if (V.seeVectorArtHighlights === 1) { /* special case for shiny clothing */ outfit = "Shine"; } break; -- GitLab