diff --git a/Changelog.txt b/Changelog.txt
index baa5930f0d6ed8dee2080afed629c73b1cd648f6..f0288ffa637c7d933d4103f5083ccf38d23ecd0e 100644
--- a/Changelog.txt
+++ b/Changelog.txt
@@ -2,6 +2,9 @@ Pregmod
 
 0.10.7.1-3.4.x
 
+	-added nipple growth drugs
+	-various fixes and cleaning
+
 	3/27/2020
 
 	1
diff --git a/slave variables documentation - Pregmod.txt b/slave variables documentation - Pregmod.txt
index 5900a574bcc702e674ce45459769119c72e57d1d..040a1da09468d6ab7f5806305ed0277a128a0f51 100644
--- a/slave variables documentation - Pregmod.txt	
+++ b/slave variables documentation - Pregmod.txt	
@@ -1676,16 +1676,16 @@ series of rings up the back that can be tied together
 0 - no
 1 - yes
 
-amp:
+(leg|arm).(right|left).type:
 
-is slave amputee
--5 - swiss army limbs
--4 - artificial limbs - Combat
--3 - artificial limbs - Beauty
--2 - artificial limbs - Sex
--1 - artificial limbs
- 0 - no
- 1 - yes
+individual limb state
+0 - missing limb
+1 - natural
+2 - simple prosthetic
+3 - advanced - Sex
+4 - advanced - Beauty
+5 - advanced - Combat
+6 - cybernetic
 
 PLimb:
 
@@ -2713,13 +2713,6 @@ how much of her diet is milk
 1 - supplemented
 2 - nearly entirely
 
-tired:
-
-affects work performance, i.e. decreased pay for whoring
-caused by poor/overcrowded sleeping conditions
-0 - not tired
-1 - tired
-
 hormones:
 
 -2 - heavy male hormones
diff --git a/src/endWeek/saBeYourHeadGirl.js b/src/endWeek/saBeYourHeadGirl.js
index e94554dc8a7a418666416cab9011f454e093f25c..8d042f4d9dc2d08d7f45057900a4cad37a2ffbff 100644
--- a/src/endWeek/saBeYourHeadGirl.js
+++ b/src/endWeek/saBeYourHeadGirl.js
@@ -301,7 +301,7 @@ window.saBeYourHeadGirl = (function saBeYourHeadGirl() {
 	 */
 	function prestigeGain(slave) {
 		if (V.HGTimeInGrade + ((slave.intelligence + slave.intelligenceImplant) / 10) + (slave.devotion / 10) + (slave.trust / 10) > 50) {
-			r.push(`slave.slaveName has rendered such long and competent service as your Head Girl that many of your citizens have come to rely on ${his} word as an extension of yours, trusting that if ${he} does something, it's because you trust ${him} to. <span class="green">${He} has become prestigious on ${his} own merits, a remarkable achievement for a slave!</span>`);
+			r.push(`${slave.slaveName} has rendered such long and competent service as your Head Girl that many of your citizens have come to rely on ${his} word as an extension of yours, trusting that if ${he} does something, it's because you trust ${him} to. <span class="green">${He} has become prestigious on ${his} own merits, a remarkable achievement for a slave!</span>`);
 			slave.prestige += 1;
 			slave.prestigeDesc = "Many citizens respect ${his} long and able service as your Head Girl.";
 		}