From cfe148550c7b992ddf06b304cae2a05030bab232 Mon Sep 17 00:00:00 2001 From: "johnsonmt88@gmail.com" Date: Tue, 23 Oct 2012 02:02:33 +0000 Subject: [PATCH] Fixed a typo from my last commit. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4939 316c924e-a436-60f5-8080-3fe189b3f50e --- code/modules/mob/living/simple_animal/parrot.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/simple_animal/parrot.dm b/code/modules/mob/living/simple_animal/parrot.dm index 05e2285dbbe..a31c03a3302 100644 --- a/code/modules/mob/living/simple_animal/parrot.dm +++ b/code/modules/mob/living/simple_animal/parrot.dm @@ -559,7 +559,7 @@ if(iscarbon(AM)) var/mob/living/carbon/C = AM if(C.l_hand.w_class <= 2 || C.r_hand.w_class <= 2) - return AM + return C return null @@ -612,7 +612,7 @@ if(C.l_hand.w_class <= 2) stolen_item = C.l_hand - if(C.r_hand.w_class > 2) + if(C.r_hand.w_class <= 2) stolen_item = C.r_hand if(stolen_item)