From 76b41d30ebe97bb14ab51dbc6c97ad5f80c81370 Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Tue, 2 Jun 2020 01:35:57 -0400
Subject: [PATCH] touch ups

---
 src/npc/descriptions/belly/belly.js | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/src/npc/descriptions/belly/belly.js b/src/npc/descriptions/belly/belly.js
index 19b70c51225..6ef8664b6d5 100644
--- a/src/npc/descriptions/belly/belly.js
+++ b/src/npc/descriptions/belly/belly.js
@@ -1,5 +1,9 @@
 App.Desc.belly = function(slave) {
 	let heavyBelly;
+	const r = [];
+	const {
+		he, him, his, hers, himself, boy, He, His
+	} = getPronouns(slave);
 	if (slave.belly >= 30000) {
 		if (slave.belly >= 400000 + (slave.muscles * 2000) && slave.physicalAge >= 18) {
 			heavyBelly = 1;
@@ -12606,4 +12610,5 @@ App.Desc.belly = function(slave) {
 			r.push(`are greatly reduced for a Fuckdoll, since it's almost always restrained, stationary, or both.`);
 		}
 	}
+	return r.join(" ");
 };
-- 
GitLab