From bcad5a787dcbb2d0c772e74e537d9d631f5208cc Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Mon, 12 Aug 2013 14:46:03 -0700 Subject: [PATCH] Fixed listing of unrelated creatures when infesting. --- code/modules/mob/living/simple_animal/borer.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/borer.dm b/code/modules/mob/living/simple_animal/borer.dm index 970bd26181e..647f9318afa 100644 --- a/code/modules/mob/living/simple_animal/borer.dm +++ b/code/modules/mob/living/simple_animal/borer.dm @@ -224,7 +224,7 @@ mob/living/simple_animal/borer/proc/detatch() return var/list/choices = list() - for(var/mob/living/C in view(1,src)) + for(var/mob/living/carbon/human/C in view(1,src)) if(istype(C,/mob/living/carbon/human) && C.stat != 2) choices += C