diff --git a/src/js/wombJS.tw b/src/js/wombJS.tw
index 2f36be99a26dfd17f3c6c9b93bd6f2ed30a101be..fd50e0e670565ac94129413003ab246897cbec9c 100644
--- a/src/js/wombJS.tw
+++ b/src/js/wombJS.tw
@@ -260,11 +260,7 @@ window.WombNormalizePreg = function(actor)
             //console.log("advancing .preg");
         }
 
-        actor.pregType = actor.womb.length;
-
         actor.pregSource = actor.womb[0].fatherID;
-        
-        actor.bellyPreg = WombGetVolume(actor);
     } 
     else if (actor.womb.length == 0 && actor.broodmother < 1)
     {
@@ -280,4 +276,7 @@ window.WombNormalizePreg = function(actor)
         if (actor.pregWeek > 0) // We can't properly set postpartum here, but can normalize obvious error with forgotten property.
             actor.pregWeek = 0;
     }
+
+    actor.pregType = actor.womb.length;
+    actor.bellyPreg = WombGetVolume(actor);
 }