From b017277688ba934157f33b0cf4be3c6299d27005 Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Wed, 20 Oct 2021 18:21:54 -0400
Subject: [PATCH] fix

---
 CHANGELOG.md                  |  2 ++
 src/player/desc/pLongWaist.js | 12 ++++++------
 2 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0ca6911c7dd..83dc23c011b 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 a7476ff9a1d..8ed55237976 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.`);
-- 
GitLab