diff --git a/src/endWeek/saSmartPiercingEffects.js b/src/endWeek/saSmartPiercingEffects.js
index 8173064c0061073d90fa0e3a02954a170a205f1d..868112969780eed2ad55e45dea7f0eb34b31e64b 100644
--- a/src/endWeek/saSmartPiercingEffects.js
+++ b/src/endWeek/saSmartPiercingEffects.js
@@ -217,11 +217,12 @@ App.SlaveAssignment.SmartPiercing.vanilla = class extends App.SlaveAssignment.Sm
 		super(slave, "none");
 	}
 
-	effect(magnitude) {
+	trigger(magnitude, plural) {
 		// Vanilla does NOT increase the strength of the "none" fetish, but otherwise behaves like any other fetishe setting
 		if (this.slave.fetish !== "none") {
-			super.effect(magnitude);
+			return super.trigger(magnitude, plural);
 		}
+		return '';
 	}
 
 	fetishText(plural, which) {