From 1e748d3ceadccc4228e91efc871e6d9a9f344364 Mon Sep 17 00:00:00 2001 From: Kyep Date: Sat, 8 Dec 2018 15:48:58 -0800 Subject: [PATCH] Fixes giant spider bug --- code/modules/mob/living/simple_animal/hostile/giant_spider.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/hostile/giant_spider.dm b/code/modules/mob/living/simple_animal/hostile/giant_spider.dm index 290433f55f4..a1a72e101fe 100644 --- a/code/modules/mob/living/simple_animal/hostile/giant_spider.dm +++ b/code/modules/mob/living/simple_animal/hostile/giant_spider.dm @@ -10,7 +10,7 @@ /mob/living/simple_animal/hostile/poison/AttackingTarget() ..() - if(isliving(target)) + if(isliving(target) && (!client || a_intent == INTENT_HARM)) var/mob/living/L = target if(L.reagents) L.reagents.add_reagent("spidertoxin", poison_per_bite)