diff --git a/src/art/vector_revamp/vectorRevampedArtControl.js b/src/art/vector_revamp/vectorRevampedArtControl.js index 58cc49a150f873f0c8768794b3a545e074e17b8f..4949181a7b02b45bc6c9ba0b3bc6ad2509ef3ce9 100644 --- a/src/art/vector_revamp/vectorRevampedArtControl.js +++ b/src/art/vector_revamp/vectorRevampedArtControl.js @@ -1407,7 +1407,7 @@ class ClothingControl { }; } } - + get ballgown() { this.piecewiseClothing.ballgown = true; return { @@ -1721,7 +1721,6 @@ class ClothingControl { this.piecewiseClothing.overalls = true; return { bodySettings: { - }, styleSettings: { top_primary: {fill: pri_col, "fill-opacity": 1}, @@ -1845,8 +1844,8 @@ class ClothingControl { let st_acc = {fill: "#000000", "fill-opacity": 0}; if (this.accessories.longStockings || this.accessories.shortStockings) { st_pri = {fill: "#F7F7F7", "fill-opacity": 0.3}; - st_acc = {fill: "#D20030", "fill-opacity": 1}; - } + st_acc = {fill: "#D20030", "fill-opacity": 1}; + } let sa = "#D20030"; let sp = "#F7F7F7"; switch (this.slave.shoes) { @@ -1901,8 +1900,8 @@ class ClothingControl { let st_acc = {fill: "#000000", "fill-opacity": 0}; if (this.accessories.longStockings || this.accessories.shortStockings) { st_pri = {fill: "#F7F7F7", "fill-opacity": 0.3}; - st_acc = {fill: "#D20030", "fill-opacity": 1}; - } + st_acc = {fill: "#D20030", "fill-opacity": 1}; + } let sa = "#F7F7F7"; let sp = "#D20030"; switch (this.slave.shoes) { @@ -3070,8 +3069,8 @@ class RevampedArtControl { } if (this.clothingControl.piecewiseClothing.shibari) { const bellySize = [0, 2, 2, 3, 4, 5, 6, 7, 8, 9]; - let bl = bellySize[this.bellyLevel]; - if (this.bellyLevel == 0) { + const bl = bellySize[this.bellyLevel]; + if (this.bellyLevel === 0) { result.push(`Art_Vector_Revamp_Torso_Outfit_Shibari_${this.torsoSize}`); } else { result.push(`Art_Vector_Revamp_Torso_Outfit_Shibari_Belly_${bl}`); @@ -3085,7 +3084,7 @@ class RevampedArtControl { } if (this.clothingControl.piecewiseClothing.straps) { const bellySize = [0, 0, 0, 3, 4, 5, 5, 5, 5, 5]; - let bl = bellySize[this.bellyLevel]; + const bl = bellySize[this.bellyLevel]; if (this.bellyLevel <= 2) { result.push(`Art_Vector_Revamp_Torso_Outfit_Straps_Base`); result.push(`Art_Vector_Revamp_Torso_Outfit_Straps_${this.torsoSize}`); @@ -3251,13 +3250,12 @@ class RevampedArtControl { } return result; } - + get torsoOutfitFrontLayer() { let result = []; if (this.clothingControl.piecewiseClothing.ballgown) { - result.push(`Art_Vector_Revamp_Torso_Outfit_Ballgown_Unnatural`); - if (this.torsoSize != "Unnatural") { + if (this.torsoSize !== "Unnatural") { result.push(`Art_Vector_Revamp_Torso_Outfit_Ballgown_${this.torsoSize}`); } if (this.bellyLevel > 0) {