From 56966aaa582872814eb82d72e118fc8e72708aa2 Mon Sep 17 00:00:00 2001 From: Iajret Creature <122297233+Steals-The-PRs@users.noreply.github.com> Date: Wed, 10 Apr 2024 19:56:09 +0300 Subject: [PATCH] [MIRROR] [NO GBP] Post-round blob zombies no longer offer themselves to ghosts (#2799) * [NO GBP] Post-round blob zombies no longer offer themselves to ghosts (#82542) ## About The Pull Request This should properly fix the post-blob-win audio/notif spam for real this time. I wanted to preserve the effect as much as possible, so they just don't poll for ghosts when the round is already over. ## Why It's Good For The Game Closes #80998 for real this time. ## Changelog :cl: Rhials fix: The tide of post-round blob zombies when a blob wins will no longer break the speakers in your headset. /:cl: * [NO GBP] Post-round blob zombies no longer offer themselves to ghosts --------- Co-authored-by: NovaBot <154629622+NovaBot13@users.noreply.github.com> Co-authored-by: Rhials <28870487+Rhials@users.noreply.github.com> --- code/modules/mob/living/basic/blob_minions/blob_zombie.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/basic/blob_minions/blob_zombie.dm b/code/modules/mob/living/basic/blob_minions/blob_zombie.dm index 3cbce54cf29..50299a38b3f 100644 --- a/code/modules/mob/living/basic/blob_minions/blob_zombie.dm +++ b/code/modules/mob/living/basic/blob_minions/blob_zombie.dm @@ -87,7 +87,7 @@ /mob/living/basic/blob_minion/zombie/controlled/consume_corpse(mob/living/carbon/human/new_corpse) . = ..() - if (!isnull(client)) + if (!isnull(client) || SSticker.current_state == GAME_STATE_FINISHED) return AddComponent(\ /datum/component/ghost_direct_control,\