From d98ab085161e38eb3d467a550cbe6d2854ae3d13 Mon Sep 17 00:00:00 2001
From: Anu <anulithic@gmail.com>
Date: Tue, 11 Mar 2025 17:49:05 -0700
Subject: [PATCH] Use correct branding method for TCR

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

diff --git a/src/npc/generate/generateMarketSlave.js b/src/npc/generate/generateMarketSlave.js
index 58d0f530bfd..6e9f2aeabfc 100644
--- a/src/npc/generate/generateMarketSlave.js
+++ b/src/npc/generate/generateMarketSlave.js
@@ -1977,7 +1977,7 @@ globalThis.generateMarketSlave = function(market = "kidnappers", numArcology = 1
 				slave.heels = 1;
 				slave.hStyle = "neat";
 				slave.collar = "leather with cowbell";
-				slave.brand["right thigh"] = "the logo of the Cattle Ranch";
+				App.Medicine.Modification.addBrand(slave, "right thigh", "the logo of the Cattle Ranch");
 			} else if (V.TCR.schoolUpgrade === 1 && jsRandom(1, 100) <= 20) {
 				SGProp.minAge = V.potencyAge + 1;
 				SGProp.maxAge = 24;
@@ -2049,7 +2049,7 @@ globalThis.generateMarketSlave = function(market = "kidnappers", numArcology = 1
 				applyMindbroken(slave, jsEither([-100, -100, -100, -100, -60, -60, -30]));
 				slave.hStyle = "neat";
 				slave.collar = "leather with cowbell";
-				slave.brand["right thigh"] = "the logo of the Cattle Ranch";
+				App.Medicine.Modification.addBrand(slave, "right thigh", "the logo of the Cattle Ranch");
 			}
 			break;
 		}
-- 
GitLab