From 5ecee57a2c9de9ad0fd468b907a9d33e2666bb47 Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Mon, 12 Aug 2013 14:45:42 -0700 Subject: [PATCH 1/2] Fixed failure to remove borer verbs on successful resist. --- code/modules/mob/screen.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/mob/screen.dm b/code/modules/mob/screen.dm index c83ba829a9d..441a0d961fe 100644 --- a/code/modules/mob/screen.dm +++ b/code/modules/mob/screen.dm @@ -631,6 +631,10 @@ H.name = "host brain" H.real_name = "host brain" + verbs -= /mob/living/carbon/human/proc/release_control + verbs -= /mob/living/carbon/human/proc/punish_host + verbs -= /mob/living/carbon/human/proc/spawn_larvae + return //resisting grabs (as if it helps anyone...) From bcad5a787dcbb2d0c772e74e537d9d631f5208cc Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Mon, 12 Aug 2013 14:46:03 -0700 Subject: [PATCH 2/2] 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