diff --git a/src/art/vector/VectorArtJS.js b/src/art/vector/VectorArtJS.js index be2717dd1316002dd8a4eef94dfc5409120cafc4..e407e3c92982b87e51ec985e63aaf79d62ac789f 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;