From eb371c441c04b892c2cc265503b5136ae879736a Mon Sep 17 00:00:00 2001 From: GDN <96800819+GDNgit@users.noreply.github.com> Date: Mon, 20 Nov 2023 13:10:56 -0600 Subject: [PATCH] makes ancient goliaths only make tendrils if they have a target (#23151) --- code/modules/mob/living/simple_animal/hostile/mining/goliath.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/hostile/mining/goliath.dm b/code/modules/mob/living/simple_animal/hostile/mining/goliath.dm index bf1e7955811..4894c3799ef 100644 --- a/code/modules/mob/living/simple_animal/hostile/mining/goliath.dm +++ b/code/modules/mob/living/simple_animal/hostile/mining/goliath.dm @@ -122,7 +122,7 @@ . = ..() if(!.) // dead return - if(isturf(loc)) + if(target && isturf(loc)) if(!LAZYLEN(cached_tentacle_turfs) || loc != last_location || tentacle_recheck_cooldown <= world.time) LAZYCLEARLIST(cached_tentacle_turfs) last_location = loc