diff --git a/code/game/objects/items/weapons/surgery_tools.dm b/code/game/objects/items/weapons/surgery_tools.dm index 7de05474249..2148f1a1d9f 100644 --- a/code/game/objects/items/weapons/surgery_tools.dm +++ b/code/game/objects/items/weapons/surgery_tools.dm @@ -906,6 +906,7 @@ CIRCULAR SAW else M.take_organ_damage(15) M.disabilities &= ~128 + M.eye_stat = 0 M:eye_op_stage = 0.0 return diff --git a/code/modules/chemical/Chemistry-Reagents.dm b/code/modules/chemical/Chemistry-Reagents.dm index fc9e39596ae..55c1fa425d8 100644 --- a/code/modules/chemical/Chemistry-Reagents.dm +++ b/code/modules/chemical/Chemistry-Reagents.dm @@ -1531,6 +1531,7 @@ datum M:eye_blurry = max(M:eye_blurry-5 , 0) M:eye_blind = max(M:eye_blind-5 , 0) M:disabilities &= ~1 + M:eye_stat = max(M:eye_stat-5, 0) if(volume > REAGENTS_OVERDOSE) M:adjustToxLoss(1) // if(data >= 100) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index 9e4b9314eb9..ed1cfbb35ba 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -1282,7 +1282,7 @@ if (druggy) client.screen += hud_used.druggy - if (istype(head, /obj/item/clothing/head/helmet/welding)) + if ((istype(head, /obj/item/clothing/head/helmet/welding)) ) if(!head:up && tinted_weldhelh) client.screen += hud_used.darkMask