From e8ee589170838bb71530484ec260f1a74e71e03e Mon Sep 17 00:00:00 2001
From: Svornost <11434-svornost@users.noreply.gitgud.io>
Date: Wed, 28 Oct 2020 23:23:05 -0700
Subject: [PATCH] switch from canTalk to an explicit voice check for non-verbal
 vocalizations

---
 src/events/reFullBed.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/events/reFullBed.js b/src/events/reFullBed.js
index 26ae1114191..05f3bbcf828 100644
--- a/src/events/reFullBed.js
+++ b/src/events/reFullBed.js
@@ -196,14 +196,14 @@ App.Events.REFullBed = class REFullBed extends App.Events.BaseEvent {
 			}
 			t.push(`to the lump just in time to feel you ejaculate deep inside ${bedSlaves[0].slaveName}.`);
 			if (V.PC.balls >= 30) {
-				t.push(`${He2} ${canTalk(bedSlaves[1]) ? "squeaks" : "gasps"} in shock as ${he2} feels ${bedSlaves[0].slaveName}'s belly swell under ${his2} ${hasAnyArms(bedSlaves[1]) ? "hand" : "face"} with your massive load.`);
+				t.push(`${He2} ${bedSlaves[1].voice !== 0 ? "squeaks" : "gasps"} in shock as ${he2} feels ${bedSlaves[0].slaveName}'s belly swell under ${his2} ${hasAnyArms(bedSlaves[1]) ? "hand" : "face"} with your massive load.`);
 				if (hasBothArms(bedSlaves[1])) {
 					t.push(`${He2} quickly brings ${his2} other hand to massage it as the orgasming cumballoon squirms in pleasure.`);
 				} else {
 					t.push(`${He2} nuzzles it as the orgasming cumballoon squirms in pleasure.`);
 				}
 			} else if (V.PC.balls >= 14) {
-				t.push(`${He2} ${canTalk(bedSlaves[1]) ? "squeaks" : "gasps"} in surprise as ${he2} feels ${bedSlaves[0].slaveName}'s belly swell slightly under ${his2} ${hasAnyArms(bedSlaves[1]) ? "hand" : "face"} with your huge load.`);
+				t.push(`${He2} ${bedSlaves[1].voice !== 0 ? "squeaks" : "gasps"} in surprise as ${he2} feels ${bedSlaves[0].slaveName}'s belly swell slightly under ${his2} ${hasAnyArms(bedSlaves[1]) ? "hand" : "face"} with your huge load.`);
 			} else if (V.PC.balls >= 9) {
 				t.push(`${He2}'s amazed by how big the load felt under ${his2} ${hasAnyArms(bedSlaves[1]) ? "hand" : "face"}.`);
 			}
-- 
GitLab