From dc76ff1ae55af445b7b36fe19e08ba1e2c0a6b22 Mon Sep 17 00:00:00 2001 From: Markolie Date: Mon, 17 Aug 2015 20:03:57 +0200 Subject: [PATCH] Fix targets --- code/modules/mob/living/carbon/human/human.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index a31a5fc95c7..68b4a936d3c 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -697,8 +697,8 @@ if(isanimal(usr)) return //animals cannot strip people - if(target.frozen) - source << "\red Do not attempt to strip frozen people." + if(frozen) + usr << "\red Do not attempt to strip frozen people." return var/pocket_side = href_list["pockets"] var/pocket_id = (pocket_side == "right" ? slot_r_store : slot_l_store) @@ -736,8 +736,8 @@ if(isanimal(usr)) return //animals cannot strip people - if(target.frozen) - source << "\red Do not attempt to strip frozen people." + if(frozen) + usr << "\red Do not attempt to strip frozen people." return var/itemTarget = href_list["item"] if(itemTarget == "id")