From 9a2fb23efd09e39e51c2468c409e41fca3869b2d Mon Sep 17 00:00:00 2001
From: DCoded <dcoded@live.com>
Date: Mon, 14 Dec 2020 23:28:44 -0500
Subject: [PATCH] Minor fixes

---
 src/js/sexActsJS.js            | 1 +
 src/npc/interaction/fAnimal.js | 2 ++
 2 files changed, 3 insertions(+)

diff --git a/src/js/sexActsJS.js b/src/js/sexActsJS.js
index 1d0fb294e4e..d6f8f6df13c 100644
--- a/src/js/sexActsJS.js
+++ b/src/js/sexActsJS.js
@@ -495,6 +495,7 @@ globalThis.seX = function(slave1, act1, slave2, act2, count = 1) {
 	// Slave 2 does their normal thing. If "Slave 2" is the public, then increment the public counter for slave 1 instead.
 	if (slave2 === "public") {
 		actX(slave1, "publicUse", count);
+		addPartner(slave1, -2);
 	} else if (typeof slave2 === 'string') {
 		// someday we may track "slaves" and "assistant"
 	} else {
diff --git a/src/npc/interaction/fAnimal.js b/src/npc/interaction/fAnimal.js
index d56550acdb6..41330e9d0d2 100644
--- a/src/npc/interaction/fAnimal.js
+++ b/src/npc/interaction/fAnimal.js
@@ -104,6 +104,8 @@ App.Interact.fAnimal = function(slave, type) {
 		mainDiv.append(cleanUp());
 	}
 
+	addPartner(slave, -8);
+
 	return frag;
 
 
-- 
GitLab