From a12cef984454da01aeb7700215889ac35b2a7dfc Mon Sep 17 00:00:00 2001 From: GDN <96800819+GDNgit@users.noreply.github.com> Date: Mon, 28 Aug 2023 07:07:43 -0500 Subject: [PATCH] terror spiders can now pull non dense objects at normal speed (#22091) * lettem cook * Update code/modules/mob/living/simple_animal/hostile/terror_spiders/terror_spiders.dm Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com> --------- Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com> --- .../simple_animal/hostile/terror_spiders/terror_spiders.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/simple_animal/hostile/terror_spiders/terror_spiders.dm b/code/modules/mob/living/simple_animal/hostile/terror_spiders/terror_spiders.dm index e2c4bdbf0fa..b04db3f1dd3 100644 --- a/code/modules/mob/living/simple_animal/hostile/terror_spiders/terror_spiders.dm +++ b/code/modules/mob/living/simple_animal/hostile/terror_spiders/terror_spiders.dm @@ -472,5 +472,5 @@ GLOBAL_LIST_EMPTY(ts_infected_list) /mob/living/simple_animal/hostile/poison/terror_spider/movement_delay() . = ..() - if(pulling && !ismob(pulling)) - . += 6 // drastic move speed penalty for dragging anything that is not a mob + if(pulling && !ismob(pulling) && pulling.density) + . += 6 // Drastic move speed penalty for dragging anything that is not a mob or a non dense object