From 27b7c87585625ac14fc5e75c8ede56d67d2f399a Mon Sep 17 00:00:00 2001 From: Citinited Date: Sat, 4 Aug 2018 17:16:07 +0100 Subject: [PATCH] whoopsie --- code/modules/reagents/chemistry/reagents/misc.dm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/code/modules/reagents/chemistry/reagents/misc.dm b/code/modules/reagents/chemistry/reagents/misc.dm index bd004ff2c20..993edd5ec44 100644 --- a/code/modules/reagents/chemistry/reagents/misc.dm +++ b/code/modules/reagents/chemistry/reagents/misc.dm @@ -428,15 +428,14 @@ /datum/reagent/jestosterone/reaction_mob(mob/living/M, method, volume) ..() - if(istype(M, /mob/living/carbon) + if(istype(M, /mob/living/carbon)) return var/is_a_clown = FALSE if(M.mind && (M.mind.assigned_role == "Clown" || M.mind.assigned_role == SPECIAL_ROLE_HONKSQUAD)) is_a_clown = TRUE if(!is_a_clown) M.AdjustDizzy(volume) - if(!issilicon(user)) - M.AddComponent(/datum/component/jestosterone, M, is_a_clown) + M.AddComponent(/datum/component/jestosterone, M, is_a_clown) /datum/reagent/jestosterone/on_mob_life(mob/living/M) M.SendSignal(COMSIG_ON_MOB_LIFE, M)