mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-21 20:20:33 +01:00
[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 🆑 Rhials fix: The tide of post-round blob zombies when a blob wins will no longer break the speakers in your headset. /🆑
This commit is contained in:
@@ -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,\
|
||||
|
||||
Reference in New Issue
Block a user