diff --git a/Content.Server/Telephone/TelephoneSystem.cs b/Content.Server/Telephone/TelephoneSystem.cs index 5fd4b906386..3c94b45e58a 100644 --- a/Content.Server/Telephone/TelephoneSystem.cs +++ b/Content.Server/Telephone/TelephoneSystem.cs @@ -114,8 +114,8 @@ private void OnTelephoneMessageReceived(Entity entity, ref T // If speaker entity has TTS, the telephone will speak with the same voice if(TryComp(args.MessageSource, out var ttsSpeaker)) { - _entManager.EnsureComponent(entity, out var ttsTelephone) - ttsTelephone.VoicePrototypeId = ttsSpeaker.VoicePrototypeId + _entManager.EnsureComponent(entity, out var ttsTelephone); + ttsTelephone.VoicePrototypeId = ttsSpeaker.VoicePrototypeId; } else // Remove TTS if the speaker has no TTS {