From 800225271caa762f8352030194c44b7e9c9b6eb8 Mon Sep 17 00:00:00 2001 From: HitPanda <104197232+EnefFlow@users.noreply.github.com> Date: Sat, 2 Sep 2023 22:11:38 +0300 Subject: [PATCH] [Fix] Sponsors any voice fix (#359) --- Content.Shared/Preferences/HumanoidCharacterProfile.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Preferences/HumanoidCharacterProfile.cs b/Content.Shared/Preferences/HumanoidCharacterProfile.cs index 698a444802..01504f5e98 100644 --- a/Content.Shared/Preferences/HumanoidCharacterProfile.cs +++ b/Content.Shared/Preferences/HumanoidCharacterProfile.cs @@ -627,7 +627,7 @@ namespace Content.Shared.Preferences _traitPreferences.AddRange(traits); prototypeManager.TryIndex(Voice, out var voice); - if (voice is null || !CanHaveVoice(voice, Sex)) + if (voice is null) Voice = SharedHumanoidAppearanceSystem.DefaultSexVoice[sex]; }