From ba277eb4a954f6ba0743cde5288748416b6ba02e Mon Sep 17 00:00:00 2001
From: Svornost <11434-svornost@users.noreply.gitgud.io>
Date: Sun, 18 Oct 2020 12:33:10 -0700
Subject: [PATCH] Fetish SP effects don't separate trigger and effect, vanilla
 has to override the entire trigger.

---
 src/endWeek/saSmartPiercingEffects.js | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/endWeek/saSmartPiercingEffects.js b/src/endWeek/saSmartPiercingEffects.js
index 8173064c006..86811296978 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) {
-- 
GitLab