From 2911653ea2098bf3fcd5eb2789f48d328cd2a618 Mon Sep 17 00:00:00 2001
From: Svornost <11434-svornost@users.noreply.gitgud.io>
Date: Thu, 28 Dec 2023 15:34:34 -0500
Subject: [PATCH] Don't describe a slave as rubbing his dick if he's got a
 chastity cage on it.

---
 src/npc/interaction/fAnus.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/npc/interaction/fAnus.js b/src/npc/interaction/fAnus.js
index f5cd20df930..0c4fd4822c0 100644
--- a/src/npc/interaction/fAnus.js
+++ b/src/npc/interaction/fAnus.js
@@ -335,9 +335,9 @@ App.Interact.fAnus = function(slave) {
 			text.push(`${He} rubs ${his}`);
 			if (!hasAnyArms(slave)) {
 				text.push(`body against you as much as ${he} can manage,`);
-			} else if (canAchieveErection(slave)) {
+			} else if (canAchieveErection(slave) && !slave.chastityPenis) {
 				text.push(`hard-on,`);
-			} else if (slave.dick !== 0) {
+			} else if (slave.dick !== 0 && !slave.chastityPenis) {
 				text.push(`soft dick,`);
 			} else if (slave.chastityVagina || slave.clit === 0) {
 				text.push(`nipples,`);
-- 
GitLab