Removed knot conditionals

whatever
This commit is contained in:
Ragolution
2019-01-12 03:45:25 -05:00
parent 1fd7bfe969
commit 245b2c1968
@@ -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("<span class='suicide'>[user] finally finishes deepthroating the [src], and their life.</span>")
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("<span class='suicide'>[user] tears-up and gags as they shove [src] down their throat! [is_knotted]! It looks like [user.p_theyre()] trying to commit suicide!</span>")
user.visible_message("<span class='suicide'>[user] tears-up and gags as they shove [src] down their throat! It looks like [user.p_theyre()] trying to commit suicide!</span>")
playsound(loc, 'sound/weapons/gagging.ogg', 50, 1, -1)
user.Stun(150)
user.adjust_blurriness(8)