diff --git a/artTools/game_suffixes.txt b/artTools/game_suffixes.txt
index b5f4080ea0082482143075444e46c2c8d34feec0..958d0487bea27dc0ce70974f0f6c273f92e4d491 100644
--- a/artTools/game_suffixes.txt
+++ b/artTools/game_suffixes.txt
@@ -1,6 +1,6 @@
 Apron
 AttractiveLingerie
-AttractiveLingerie
+AttractiveLingerieForAPregnantWoman
 BallGown
 Battledress
 BodyOil
diff --git a/src/art/vector/Helper_Functions.tw b/src/art/vector/Helper_Functions.tw
index 06e89d804a59da374d9202737e571af681995b22..87367fe16273855175679e131154e452da926a60 100644
--- a/src/art/vector/Helper_Functions.tw
+++ b/src/art/vector/Helper_Functions.tw
@@ -3,7 +3,7 @@
 window.clothing2artSuffix = function(v) {
   return v.replace(/^a[n]? /,"") /* remove "a" and "an" from the beginning*/
           .replace(/ ?(outfit|clothing) ?/,"") /* remove "outfit" and "clothing" (redundant) */
-          .replace(/ (and|for) .+/,"") /* remove concatenated descriptions */
+          .replace(/ and .+/,"") /* remove concatenated descriptions */
           .replace(/\w\S*/g, 
             function(txt){
                 return txt.charAt(0).toUpperCase() +