From eaab67d3031b5ea78b20e59ed880f3594dc75046 Mon Sep 17 00:00:00 2001 From: NovaBot <154629622+NovaBot13@users.noreply.github.com> Date: Thu, 6 Jun 2024 01:10:00 -0400 Subject: [PATCH] [MIRROR] Paradox clones copy the voice. [MDB IGNORE] (#2859) * Paradox clones copy the voice. (#83729) ## About The Pull Request I have no idea if this works because I didn't setup TTS to test, but it's simple. Makes paradox clones use the victim's voice. ## Why It's Good For The Game Closes #81450 Because it doesn't make sense for a clone to have a different voice. ## Changelog :cl: fix: Fixes paradox clones using a different voice from the owner. /:cl: * Paradox clones copy the voice. --------- Co-authored-by: Pickle-Coding <58013024+Pickle-Coding@users.noreply.github.com> Co-authored-by: NovaBot13 --- code/modules/mob/living/carbon/human/human_helpers.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/living/carbon/human/human_helpers.dm b/code/modules/mob/living/carbon/human/human_helpers.dm index 77b095a4839..4eb5768cc66 100644 --- a/code/modules/mob/living/carbon/human/human_helpers.dm +++ b/code/modules/mob/living/carbon/human/human_helpers.dm @@ -314,6 +314,8 @@ clone.fully_replace_character_name(null, dna.real_name) copy_clothing_prefs(clone) clone.age = age + clone.voice = voice + clone.pitch = pitch dna.transfer_identity(clone, transfer_SE = TRUE, transfer_species = TRUE) clone.dress_up_as_job(SSjob.GetJob(job))