From 752e7fd2b704a3e1531dc47344d48d8b9d0c6d7c Mon Sep 17 00:00:00 2001
From: DCoded <dcoded@live.com>
Date: Tue, 19 Mar 2019 21:26:05 -0400
Subject: [PATCH] Gated smart bullet vibrator

---
 src/uncategorized/slaveInteract.tw |  2 +-
 src/uncategorized/wardrobeUse.tw   | 14 ++++++++------
 2 files changed, 9 insertions(+), 7 deletions(-)

diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw
index 5ade5a85453..8d7bdce18ee 100644
--- a/src/uncategorized/slaveInteract.tw
+++ b/src/uncategorized/slaveInteract.tw
@@ -1058,7 +1058,7 @@
 		<<if isItemAccessible("bullet vibrator")>>	
 			| <<link "Bullet vibrator">><<set $activeSlave.vaginalAccessory = "bullet vibrator">><<replace "#vaginalAccessory">>$activeSlave.vaginalAccessory<</replace>><</link>>
 		<</if>>
-		<<if isItemAccessible("smart bullet vibrator")>>
+		<<if isItemAccessible("smart bullet vibrator") && $toysBoughtSmartVibes == 1>>
 			| <<link "Smart bullet vibrator">><<set $activeSlave.vaginalAccessory = "smart bullet vibrator">><<replace "#vaginalAccessory">>$activeSlave.vaginalAccessory<</replace>><</link>>
 		<</if>>
 		| <<link "Dildo">><<set $activeSlave.vaginalAccessory = "dildo">><<replace "#vaginalAccessory">>$activeSlave.vaginalAccessory<</replace>><</link>>
diff --git a/src/uncategorized/wardrobeUse.tw b/src/uncategorized/wardrobeUse.tw
index aa8b05d2e31..9ef6e2756ca 100644
--- a/src/uncategorized/wardrobeUse.tw
+++ b/src/uncategorized/wardrobeUse.tw
@@ -1204,12 +1204,14 @@ Clothes: ''<span id="clothes">$activeSlave.clothes</span>.''
 			<<replace "#dickAccessoryDescription">>//<<dickAccessoryDescription>>//<</replace>>
 			<<replace "#buttplugDescription">>//<<buttplugDescription>>//<</replace>>
 		<</link>>
-		| <<link "Smart bullet vibrator">>
-			<<set $activeSlave.dickAccessory = "smart bullet vibrator">>
-			<<replace "#dickAccessory">>$activeSlave.dickAccessory<</replace>>
-			<<replace "#dickAccessoryDescription">>//<<dickAccessoryDescription>>//<</replace>>
-			<<replace "#buttplugDescription">>//<<buttplugDescription>>//<</replace>>
-		<</link>>
+		<<if isItemAccessible("smart bullet vibrator") && $toysBoughtSmartVibes == 1>>
+			| <<link "Smart bullet vibrator">>
+				<<set $activeSlave.dickAccessory = "smart bullet vibrator">>
+				<<replace "#dickAccessory">>$activeSlave.dickAccessory<</replace>>
+				<<replace "#dickAccessoryDescription">>//<<dickAccessoryDescription>>//<</replace>>
+				<<replace "#buttplugDescription">>//<<buttplugDescription>>//<</replace>>
+			<</link>>
+		<</if>>
 	<</if>>
 <</if>>
 <br><br>
-- 
GitLab