From 7103131078aa7e53017d97ede8d0890836dd7992 Mon Sep 17 00:00:00 2001 From: Jacquerel Date: Tue, 11 Jul 2023 07:15:17 +0100 Subject: [PATCH] [no gbp] Restores cooldown to spider guard ability (#76698) ## About The Pull Request I guess in some commit I accidentally dropped the super call in this proc, meaning the cooldown was never set ## Why It's Good For The Game You should get one (1) instant statue per minute, not several hundred ## Changelog :cl: fix: Guard spiders can now only make one scary duplicate of themselves at a time, rather than as many as they can click on the button. /:cl: --- .../mob/living/basic/space_fauna/spider/spider_abilities/web.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/mob/living/basic/space_fauna/spider/spider_abilities/web.dm b/code/modules/mob/living/basic/space_fauna/spider/spider_abilities/web.dm index 67314517c2c..75a5be04add 100644 --- a/code/modules/mob/living/basic/space_fauna/spider/spider_abilities/web.dm +++ b/code/modules/mob/living/basic/space_fauna/spider/spider_abilities/web.dm @@ -166,3 +166,4 @@ /datum/action/cooldown/web_effigy/Activate() new /obj/structure/spider/effigy(get_turf(owner)) + return ..()