From a6a82038347fd231daf4263238540d1607d649ce Mon Sep 17 00:00:00 2001 From: skull132 Date: Wed, 4 Nov 2015 16:45:39 +0200 Subject: [PATCH] Fixes #755 --- code/ZAS/Plasma.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/ZAS/Plasma.dm b/code/ZAS/Plasma.dm index 80f4e666..4f504d7e 100644 --- a/code/ZAS/Plasma.dm +++ b/code/ZAS/Plasma.dm @@ -121,7 +121,7 @@ obj/var/contaminated = 0 return var/datum/organ/internal/eyes/E = internal_organs_by_name["eyes"] - if(E) + if(E && E.robotic != 2) if(prob(20)) src << "\red Your eyes burn!" E.damage += 2.5 eye_blurry = min(eye_blurry+1.5,50)