diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0ca6911c7dd387c08687cf9485e27aef8516b08c..83dc23c011bf27d45f1b338ab68734782e93f56e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,9 +8,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
 
 * added a number of animal tail/ear/limb prosthetics
 * expanded highlights and other hair accents
+* added several new hairstyles (pixie cut, bob cut, double buns, chignon, french twist, dutch braid, double dutch braid)
 * piercings overhauled
 * added better support for custom piercings
 * added a REFS event for Roman Revivalism
+* added the option to permit multiple random events per week
 * added twilight theme
 * fixes
 
diff --git a/src/player/desc/pLongWaist.js b/src/player/desc/pLongWaist.js
index a7476ff9a1dd98f8e3b4dd259f5dc4ed6e8b2087..8ed552379762628be0d4c4376999b2e99bccc377 100644
--- a/src/player/desc/pLongWaist.js
+++ b/src/player/desc/pLongWaist.js
@@ -80,9 +80,9 @@ App.Desc.Player.waist = function(PC = V.PC) {
 			}
 		} else {
 			r.push(`an <span class="red">absurdly narrow, and frankly disturbing, waist</span> that gives you a cartoonishly ${womanly}`);
-			if (slave.weight > 30) {
+			if (PC.weight > 30) {
 				r.push(`figure made even more ludicrous by your extra weight.`);
-			} else if (slave.weight < -30) {
+			} else if (PC.weight < -30) {
 				r.push(`figure made even more ludicrous by how thin you are is.`);
 			} else {
 				r.push(`figure.`);
@@ -178,9 +178,9 @@ App.Desc.Player.waist = function(PC = V.PC) {
 			}
 		} else {
 			r.push(`an <span class="pink">absurdly narrow waist</span> that gives you a cartoonishly hourglass`);
-			if (slave.weight > 30) {
+			if (PC.weight > 30) {
 				r.push(`figure made even more ludicrous by your extra weight.`);
-			} else if (slave.weight < -30) {
+			} else if (PC.weight < -30) {
 				r.push(`figure made even more ludicrous by how thin you are is.`);
 			} else {
 				r.push(`figure.`);
@@ -270,9 +270,9 @@ App.Desc.Player.waist = function(PC = V.PC) {
 			}
 		} else {
 			r.push(`an <span class="red">absurdly narrow waist</span> that gives you a cartoonishly ${womanly}`);
-			if (slave.weight > 30) {
+			if (PC.weight > 30) {
 				r.push(`figure made even more ludicrous by your extra weight.`);
-			} else if (slave.weight < -30) {
+			} else if (PC.weight < -30) {
 				r.push(`figure made even more ludicrous by how thin you are is.`);
 			} else {
 				r.push(`figure.`);