From d14c2a515c892cfd57c085b4dbc78fe307966391 Mon Sep 17 00:00:00 2001 From: Segrain Date: Wed, 3 Jul 2013 06:16:59 +0300 Subject: [PATCH] Quickfix. --- code/modules/mob/living/carbon/human/human.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index bf9f230fe51..78546ceea22 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -740,7 +740,7 @@ if (R.fields["id"] == E.fields["id"]) if(hasHUD(usr,"medical")) var/t1 = copytext(sanitize(input("Add Comment:", "Med. records", null, null) as message),1,MAX_MESSAGE_LEN) - if ( !(t1) || src.stat || src.restrained() || !(hasHUD(usr,"medical")) ) + if ( !(t1) || usr.stat || usr.restrained() || !(hasHUD(usr,"medical")) ) return var/counter = 1 while(R.fields[text("com_[]", counter)])