From 559fcebb57810bd2b14630a5fae2331d902ec080 Mon Sep 17 00:00:00 2001 From: Aurorablade Date: Sat, 21 Jan 2017 08:50:30 -0500 Subject: [PATCH] ferp --- code/game/objects/items/weapons/holy_weapons.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/game/objects/items/weapons/holy_weapons.dm b/code/game/objects/items/weapons/holy_weapons.dm index 7fd61e32acc..c2bcc8711df 100644 --- a/code/game/objects/items/weapons/holy_weapons.dm +++ b/code/game/objects/items/weapons/holy_weapons.dm @@ -522,7 +522,7 @@ var/mob/living/carbon/human/target = M if(target.mind) - target.mind.miming = 1//will need to remove this after a time + H.AdjustSilence(5) to_chat(target, "You feel quiet..") @@ -546,9 +546,9 @@ //would like to make the holder mime if they have it in on thier person in general if(src == holder.l_hand || src == holder.r_hand) // Holding this in your hand will for(var/mob/living/carbon/human/H in range(5)) - if(H.current.mind.assigned_role == "Clown") - H.mind.miming = 1//will need to remove this after a time - H.color = "grey" //and this + if(H.mind.assigned_role == "Clown") + H.AdjustSilence(30) + animate_fade_grayscale(H,20) if(prob(10)) to_chat(H, "Being in the presence of [holder]'s [src] is interfering with your honk!")