From 9f3fe77be0e154ea77dd4e81a475ad05d68eaf9f Mon Sep 17 00:00:00 2001 From: Cadyn Date: Mon, 24 Aug 2020 14:20:41 -0700 Subject: [PATCH] Following feedback --- code/modules/reagents/reagent_containers/syringes.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/reagent_containers/syringes.dm b/code/modules/reagents/reagent_containers/syringes.dm index 362626890e..caf4d2bf3d 100644 --- a/code/modules/reagents/reagent_containers/syringes.dm +++ b/code/modules/reagents/reagent_containers/syringes.dm @@ -63,7 +63,7 @@ to_chat(user, "This syringe is broken!") return - if(user.a_intent == I_HURT && ismob(target) && user.type!=/mob/living/silicon/robot) + if(user.a_intent == I_HURT && ismob(target) && !isrobot(user)) if((CLUMSY in user.mutations) && prob(50)) target = user syringestab(target, user)