From b9d84565f1116cdb4c73bbd93b448eadc6262fce Mon Sep 17 00:00:00 2001 From: Arokha Sieyes Date: Sun, 19 Feb 2017 04:14:40 -0500 Subject: [PATCH] Typo fix, adds more confused --- code/modules/resleeving/machines.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/resleeving/machines.dm b/code/modules/resleeving/machines.dm index dd54c8fc907..d77908e3abe 100644 --- a/code/modules/resleeving/machines.dm +++ b/code/modules/resleeving/machines.dm @@ -46,7 +46,7 @@ var/obj/item/organ/I = H.internal_organs_by_name[name] if(!I) continue//Not an organ. Perhaps external conversion changed it already? - if(part == BP_EYES && status > 0) //But not eyes. The only non-essential internal organ. + if(part == O_EYES && status > 0) //But not eyes. The only non-essential internal organ. qdel(I) continue @@ -341,8 +341,8 @@ //Inform them and make them a little dizzy. occupant << "You feel a small pain in your head as you're given a new backup implant. Oh, and a new body. It's disorienting, to say the least." - occupant.confused = max(occupant.confused, 15) - occupant.eye_blurry = max(occupant.eye_blurry, 15) + occupant.confused = max(occupant.confused, 25) + occupant.eye_blurry = max(occupant.eye_blurry, 25) return 1