diff --git a/src/art/vector_revamp/vectorRevampedArtControl.js b/src/art/vector_revamp/vectorRevampedArtControl.js index 7aacb0d561be73be801508ba8f3fd46f0d718082..2237d0a28d3b5ba2e40240b9a61681f3b31ce0f3 100644 --- a/src/art/vector_revamp/vectorRevampedArtControl.js +++ b/src/art/vector_revamp/vectorRevampedArtControl.js @@ -3119,6 +3119,7 @@ class RevampedArtControl { get boobAddonLayer() { let result = []; + let hasSizeNoneArt = true; if (this.showNipplesPiercings && this.showBoobs) { let size = "Small"; @@ -3193,6 +3194,7 @@ class RevampedArtControl { } if (this.clothingControl.piecewiseClothing.bra) { std_clothing = "Bra"; + hasSizeNoneArt = false; } if (this.clothingControl.piecewiseClothing.croptop) { std_clothing = "CropTop"; @@ -3209,18 +3211,23 @@ class RevampedArtControl { } if (this.clothingControl.piecewiseClothing.scalemailTop) { std_clothing = "Scalemail"; + hasSizeNoneArt = false; } if (this.clothingControl.piecewiseClothing.shirt) { std_clothing = "Shirt"; + hasSizeNoneArt = false; } if (this.clothingControl.piecewiseClothing.sportsbra) { std_clothing = "SportsBra"; + hasSizeNoneArt = false; } if (this.clothingControl.piecewiseClothing.stringbikiniTop) { std_clothing = "StringBikini"; + hasSizeNoneArt = false; } if (this.clothingControl.piecewiseClothing.stripedbra) { std_clothing = "StripedBra"; + hasSizeNoneArt = false; } if (this.clothingControl.piecewiseClothing.sweater) { std_clothing = "Sweater"; @@ -3236,7 +3243,9 @@ class RevampedArtControl { } if (std_clothing !== "") { if (this.artSlave.boobs < 300) { - result.push(`Art_Vector_Revamp_Boob_Outfit_${std_clothing}_None`); + if (hasSizeNoneArt) { + result.push(`Art_Vector_Revamp_Boob_Outfit_${std_clothing}_None`); + } } else { let size_norm = this.setBoobOutfitArtTransform(); if (this.artSlave.boobs < 600) {