diff --git a/code/datums/brain_damage/hypnosis.dm b/code/datums/brain_damage/hypnosis.dm index 8f85ca12cb..f937c19658 100644 --- a/code/datums/brain_damage/hypnosis.dm +++ b/code/datums/brain_damage/hypnosis.dm @@ -9,7 +9,7 @@ var/hypnotic_phrase = "" var/regex/target_phrase -/datum/brain_trauma/hypnosis/New(phrase) +/datum/brain_trauma/hypnosis/New(phrase, quirk = FALSE) if(!phrase) qdel(src) if(quirk == TRUE) diff --git a/code/datums/brain_damage/mild.dm b/code/datums/brain_damage/mild.dm index bacc171fbe..012f771a29 100644 --- a/code/datums/brain_damage/mild.dm +++ b/code/datums/brain_damage/mild.dm @@ -176,7 +176,7 @@ if(prob(12) && !HAS_TRAIT(owner, TRAIT_SOOTHED_THROAT)) if(prob(5)) to_chat(owner, "[pick("You have a coughing fit!", "You can't stop coughing!")]") - owner.stun(20) + owner.Stun(20) owner.emote("cough") addtimer(CALLBACK(owner, /mob/.proc/emote, "cough"), 6) addtimer(CALLBACK(owner, /mob/.proc/emote, "cough"), 12)