From c01fc34ead2f8d965cc75148102dbb43567cc074 Mon Sep 17 00:00:00 2001
From: corncobman21 <corncobman21@hotmail.com>
Date: Thu, 19 Apr 2018 22:39:43 -0400
Subject: [PATCH] Code simplification for lispReplace()

---
 src/uncategorized/addCustomDescriptors.tw | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/uncategorized/addCustomDescriptors.tw b/src/uncategorized/addCustomDescriptors.tw
index 0f66ba70ef6..6b1b29b0333 100644
--- a/src/uncategorized/addCustomDescriptors.tw
+++ b/src/uncategorized/addCustomDescriptors.tw
@@ -17,7 +17,7 @@ You may enter custom descriptors for your slave's hair color, hair style, tattoo
 				<<link "Apply">>
 					<<replace "#result">>
 						She'll try her best to call you $activeSlave.customTitle.
-						<<set $activeSlave.customTitleLisp = $activeSlave.customTitle, $activeSlave.customTitleLisp = nameReplace($activeSlave.customTitleLisp)>>
+						<<set $activeSlave.customTitleLisp = lispReplace($activeSlave.customTitle)>>
 					<</replace>>
 				<</link>>
 			<</replace>>
@@ -28,7 +28,7 @@ You may enter custom descriptors for your slave's hair color, hair style, tattoo
 		<<link "Apply">>
 			<<replace "#result">>
 				She'll try her best to call you $activeSlave.customTitle.
-				<<set $activeSlave.customTitleLisp = $activeSlave.customTitle, $activeSlave.customTitleLisp = nameReplace($activeSlave.customTitleLisp)>>
+				<<set $activeSlave.customTitleLisp = lispReplace($activeSlave.customTitle)>>
 			<</replace>>
 		<</link>> |
 		<<link "Stop using a custom title">>
-- 
GitLab