diff --git a/modular_citadel/code/modules/arousal/toys/dildos.dm b/modular_citadel/code/modules/arousal/toys/dildos.dm
index 885f6efc69..4b0a7ad919 100644
--- a/modular_citadel/code/modules/arousal/toys/dildos.dm
+++ b/modular_citadel/code/modules/arousal/toys/dildos.dm
@@ -18,6 +18,7 @@
var/random_color = TRUE
var/random_size = FALSE
var/random_shape = FALSE
+ var/is_knotted = FALSE
//Lists moved to _cit_helpers.dm as globals so they're not instanced individually
/obj/item/dildo/proc/update_appearance()
@@ -123,7 +124,6 @@ obj/item/dildo/flared
attack_verb = list("penetrated", "slapped", "neighed", "gaped", "prolapsed", "inseminated")
obj/item/dildo/flared/huge
- dildo_shape ="horse"
name = "literal horse cock"
desc = "THIS THING IS HUGE!"
dildo_size = 4
@@ -138,16 +138,15 @@ obj/item/dildo/custom
// Suicide acts, by request
-var/is_knotted = (dildo_shape == knotted) ? "They swallowed the knot" : "Their face is turning blue"
-
/obj/item/dildo/proc/manual_suicide(mob/living/user)
user.visible_message("[user] finally finishes deepthroating the [src], and their life.")
user.adjustOxyLoss(200)
user.death(0)
/obj/item/dildo/suicide_act(mob/living/user)
+// is_knotted = ((src.dildo_shape == "knotted")?"They swallowed the knot":"Their face is turning blue")
if(do_after(user,17,target=src))
- user.visible_message("[user] tears-up and gags as they shove [src] down their throat! [is_knotted]! It looks like [user.p_theyre()] trying to commit suicide!")
+ user.visible_message("[user] tears-up and gags as they shove [src] down their throat! It looks like [user.p_theyre()] trying to commit suicide!")
playsound(loc, 'sound/weapons/gagging.ogg', 50, 1, -1)
user.Stun(150)
user.adjust_blurriness(8)