From eea2b8b40dfb2f15c3e6639f52fb3ec101e97377 Mon Sep 17 00:00:00 2001 From: Pregmodder <pregmodder@gmail.com> Date: Mon, 24 Jun 2019 17:55:30 -0400 Subject: [PATCH] fixes --- src/interaction/main/toychest.js | 4 ++-- src/interaction/prostheticConfig.tw | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/interaction/main/toychest.js b/src/interaction/main/toychest.js index 2b35b8db014..78965d47422 100644 --- a/src/interaction/main/toychest.js +++ b/src/interaction/main/toychest.js @@ -132,11 +132,11 @@ App.Interact.ToyChest = function(slave) { break; case "a succubus outfit": r += `${He}'s dressed to look like a succubus. There is a demon`; - if ($PC.title === 0) { + if (V.PC.title === 0) { r += `ess`; } r += `in this office, and ${he} serves `; - if ($PC.title === 0) { + if (V.PC.title === 0) { r += `her.`; } else { r += `him.`; diff --git a/src/interaction/prostheticConfig.tw b/src/interaction/prostheticConfig.tw index aa86a2c4eb6..10b0338b538 100644 --- a/src/interaction/prostheticConfig.tw +++ b/src/interaction/prostheticConfig.tw @@ -421,7 +421,7 @@ Fit prosthetics to $him: <<case "detachTail">> <<set $prostheticsConfig = "main", $nextButton = "Continue", $nextLink = "Prosthetics Config">> - <<set $activeSlave.tail = "none", $activeSlave.tailShape = "none", set $activeSlave.tailColor = "none">> + <<set $activeSlave.tail = "none", $activeSlave.tailShape = "none", $activeSlave.tailColor = "none">> You send the release signal and the mechanical lock disengages allowing the artificial tail to pop right off. <<case "attachTail">> -- GitLab