diff --git a/src/art/artWidgets.tw b/src/art/artWidgets.tw
index 001b41c1607ceda56f29f65f8cdc07a40dedf449..0e4561acf0366cfb782f71e67f480e3d6313d95a 100644
--- a/src/art/artWidgets.tw
+++ b/src/art/artWidgets.tw
@@ -196,13 +196,13 @@ vector art added later is drawn over previously added art
 
 /% Leg + 1 size up when chubby or fat%/
 <<if $args[0].hips < 0>>
-	<<if $args[0].weight <= 95>>/%Chubby%/
+	<<if $args[0].weight > 95>>/%Chubby%/
 		<<set _legSize = "normal">>
 	<<else>>
 		<<set _legSize = "narrow">>
 	<</if>>
 <<elseif $args[0].hips == 0>>
-	<<if $args[0].weight <= 95>>/%Chubby%/
+	<<if $args[0].weight > 95>>/%Chubby%/
 		<<set _legSize = "wide">>
 	<<else>>
 		<<set _legSize = "normal">>
@@ -225,13 +225,13 @@ vector art added later is drawn over previously added art
 <<if $args[0].shoes == "heels">>
 	<<set _shoesType = "heel">>
 <<elseif $args[0].shoes == "extreme heels">>
-	<<if $args[0].weight <= 95>>/%Chubby%/
+	<<if $args[0].weight > 95>>/%Chubby%/
 		<<set _shoesType = "extreme heel wide">>
 	<<else>>
 		<<set _shoesType = "extreme heel">>
 	<</if>>
 <<elseif $args[0].shoes == "boots">>
-	<<if $args[0].weight <= 95>>/%Chubby%/
+	<<if $args[0].weight > 95>>/%Chubby%/
 		<<set _shoesType = "boot wide">>
 	<<else>>
 		<<set _shoesType = "boot">>
@@ -259,13 +259,13 @@ vector art added later is drawn over previously added art
 
 /% Torso %/
 <<if $args[0].waist < -40>>/*Unnatural*/
-	<<if $args[0].weight <= 30>>/%Chubby%/
+	<<if $args[0].weight > 30>>/%Chubby%/
 		<<set _torsoSize = "hourglass">>
 	<<else>>
 		<<set _torsoSize = "unnatural">>
 	<</if>>
 <<elseif $args[0].waist <= 10>>/%Hour glass%/
-	<<if $args[0].weight <= 30>>/%Chubby%/
+	<<if $args[0].weight > 30>>/%Chubby%/
 		<<set _torsoSize = "normal">>
 	<<else>>
 		<<set _torsoSize = "hourglass">>
@@ -345,7 +345,7 @@ vector art added later is drawn over previously added art
 <</if>>
 
 /%if pregnant%/
-<<if $args[0].belly >= 1500>>
+<<if $args[0].belly >= 5000>>
 	<<print "<img class='paperdoll' src=" + _imgSkinLoc + "/preg belly.svg'" + " style='"+ _skinFilter + "'>">>
 	<<if $args[0].navelPiercing >= 1>>/*Navel Piercing*/
 		<<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/preg navel piercing.svg'" + "/>">>
diff --git a/src/art/vector/Belly.tw b/src/art/vector/Belly.tw
index d89cb2dfcac6591f14f075205138000a940f978b..2491b8891069ba7310a16ced7ca928edb07150bc 100644
--- a/src/art/vector/Belly.tw
+++ b/src/art/vector/Belly.tw
@@ -2,7 +2,7 @@
 
 <<set _showNavelPiercings = $showBodyMods == 1 && _artSlave.clothes != "restrictive latex" && _artSlave.clothes != "a latex catsuit">>
 
-<<if _artSlave.belly >= 1500>>
+<<if _artSlave.belly >= 5000>>
 	<<include Art_Vector_Belly>>
 	
 	/* shiny clothings */
diff --git a/src/art/vector/Leg.tw b/src/art/vector/Leg.tw
index b94bda9fcb4ca0be8cfad6bbd9343a8bb468f51b..f904f97361f7a83d458bdd0e684b1dbc0f83a308 100644
--- a/src/art/vector/Leg.tw
+++ b/src/art/vector/Leg.tw
@@ -8,13 +8,13 @@
 <<if _artSlave.amp != 1>>
   <<set _legSize = "Normal">>
   <<if _artSlave.hips < 0>>
-    <<if _artSlave.weight <= 95>>
+    <<if _artSlave.weight > 95>>
       <<set _legSize = "Normal">>
     <<else>>
       <<set _legSize = "Narrow">>
     <</if>>
   <<elseif _artSlave.hips == 0>>
-    <<if _artSlave.weight <= 95>>
+    <<if _artSlave.weight > 95>>
       <<set _legSize = "Wide">>
     <<else>>
       <<set _legSize = "Normal">>
diff --git a/src/art/vector/Torso.tw b/src/art/vector/Torso.tw
index a2d884a3ac3a5b449ccc9ce9964593b0d787bf8a..3a5a649fa8fa570413f2b0d683063564146545ef 100644
--- a/src/art/vector/Torso.tw
+++ b/src/art/vector/Torso.tw
@@ -5,13 +5,13 @@
 /* BEWARE: _torsoSize might be used in torso outfit */
 
 <<if _artSlave.waist < -40>>
-	<<if _artSlave.weight <= 30>>
+	<<if _artSlave.weight > 30>>
 		<<set _torsoSize = "Hourglass">>
 	<<else>>
 		<<set _torsoSize = "Unnatural">>
 	<</if>>
 <<elseif _artSlave.waist <= 10>>
-	<<if _artSlave.weight <= 30>>
+	<<if _artSlave.weight > 30>>
 		<<set _torsoSize = "Normal">>
 	<<else>>
 		<<set _torsoSize = "Hourglass">>
diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw
index 580056152bc0b791c67b294fed3f7e90fc4d4083..c3334335abcf5dafe456316383f4fd0bd26dc589 100644
--- a/src/uncategorized/BackwardsCompatibility.tw
+++ b/src/uncategorized/BackwardsCompatibility.tw
@@ -995,8 +995,6 @@
 
 <<if def $FSGenderRadicalistLaw>>
 	<<unset $FSGenderRadicalistLaw>>
-<<elseif def $arcologies[0].FSGenderRadicalistLaw>>
-	<<unset $arcologies[0].FSGenderRadicalistLaw>>
 <</if>>
 
 <<if ndef $arcologies[0].FSGenderRadicalistLawBeauty>>