From 05b3c20ad07e685e35df652a72c9a4c773b34c70 Mon Sep 17 00:00:00 2001 From: kopareigns <kopareigns@gmail.com> Date: Sat, 19 Jan 2019 17:01:31 -0500 Subject: [PATCH] Further Streamlining --- src/art/artJS.tw | 3 ++- src/art/vector_revamp/Vector_Revamped_Control_.tw | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/art/artJS.tw b/src/art/artJS.tw index 5d48153998e..6158abe9e11 100644 --- a/src/art/artJS.tw +++ b/src/art/artJS.tw @@ -2841,7 +2841,8 @@ window.VectorArt = (function (artSlave) { if (slave.clothes !== "a schoolgirl outfit") /* file is there, but contains no artwork */ r += jsInclude(`Art_Vector_Leg_Outfit_${outfit}_${legSize}`); } else { - r += jsInclude(`Art_Vector_Leg_Outfit_${outfit}_Stump`); + if (outfit === "Shine") /* the only stump outfit that does not draw an empty svg */ + r += jsInclude(`Art_Vector_Leg_Outfit_${outfit}_Stump`); } } } diff --git a/src/art/vector_revamp/Vector_Revamped_Control_.tw b/src/art/vector_revamp/Vector_Revamped_Control_.tw index 94b634d1bc9..db73476bb2b 100644 --- a/src/art/vector_revamp/Vector_Revamped_Control_.tw +++ b/src/art/vector_revamp/Vector_Revamped_Control_.tw @@ -26,8 +26,8 @@ <<set _boob_outfit_art_transform = _revampedVectorArtControl.boobOutfitArtTransform>> <<set _art_pussy_tattoo_text = _revampedVectorArtControl.pubicTattooText >> -<<for _vrc = 0; _vrc < _revampedArtLayers.length; _vrc++>> - <<include _revampedArtLayers[_vrc]>> -<</for>> +<<set _artString = "">> +<<run _revampedArtLayers.forEach(function(s) { _artString += jsInclude(s); })>> +<<print _artString>> <<unset _art_transform>> \ No newline at end of file -- GitLab