From 1aaf6775fae3d5a7eafa550a03774e64ec5d10d4 Mon Sep 17 00:00:00 2001 From: Svornost <11434-svornost@users.noreply.gitgud.io> Date: Tue, 2 Mar 2021 17:09:09 -0800 Subject: [PATCH] PC doesn't have a public use counter --- src/js/sexActsJS.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/sexActsJS.js b/src/js/sexActsJS.js index 0cade952c25..5c313578f64 100644 --- a/src/js/sexActsJS.js +++ b/src/js/sexActsJS.js @@ -488,8 +488,8 @@ globalThis.seX = function(slave1, act1, slave2, act2, count = 1) { // Slave 1 does their normal thing actX(slave1, act1, count); - // Slave 2 does their normal thing. If "Slave 2" is the public, then increment the public counter for slave 1 instead. - if (slave2 === "public") { + // Slave 2 does their normal thing. If "Slave 2" is the public and "Slave 1" is not the PC, then increment the public counter for slave 1 instead. + if (slave2 === "public" && slave1.ID !== -1) { actX(slave1, "publicUse", count); addPartner(slave1, -2); } else if (typeof slave2 === 'string') { -- GitLab