diff --git a/src/facilities/toyShop/toyShop.js b/src/facilities/toyShop/toyShop.js
index 4eea42177b7c9aa8169399b61dc4dd09b9652a31..81bcb59b1a4dd74595417507641269e4ad9549be 100644
--- a/src/facilities/toyShop/toyShop.js
+++ b/src/facilities/toyShop/toyShop.js
@@ -19,9 +19,9 @@ App.UI.toyShop = function() {
 	}
 
 	function init() {
-		buttPlugName = "spade-shaped plug";
+		buttPlugName = "";
 		buttPlugData = {
-			name: "Spade-shaped plug",
+			name: "",
 			width: 1,
 			length: 1
 		};
@@ -80,7 +80,7 @@ App.UI.toyShop = function() {
 					)
 				);
 				build.append(App.UI.DOM.generateLinksStrip(linkArray));
-			} else {
+			} else if (buttPlugName){
 				el.append(apply());
 			}
 
@@ -117,7 +117,7 @@ App.UI.toyShop = function() {
 		}
 
 		function desc() {
-			const value = App.UI.DOM.makeElement("div", `Enter value here as it will appear in descriptions: a standard "butt plug" `);
+			const value = App.UI.DOM.makeElement("div", `Enter shape here as it will appear in descriptions `);
 			value.append(App.UI.DOM.makeTextBox(
 				buttPlugName,
 				v => {
@@ -125,12 +125,12 @@ App.UI.toyShop = function() {
 					refresh();
 				}
 			));
-			App.UI.DOM.appendNewElement("span", value, ` Your slave has a ${buttPlugName} wedged firmly in their asshole.`, "note");
+			App.UI.DOM.appendNewElement("span", value, ` Your slave has a standard ${buttPlugName ? buttPlugName : `spade-shaped plug`} wedged firmly in their asshole.`, "note");
 			return value;
 		}
 
 		function title() {
-			const title = App.UI.DOM.makeElement("div", `Enter title as it will appear in lists of choices; "Butt plug" `);
+			const title = App.UI.DOM.makeElement("div", `Enter title as it will appear in lists of choices `);
 			title.append(App.UI.DOM.makeTextBox(
 				buttPlugData.name,
 				v => {