[Fix] Sponsors any voice fix (#359)

This commit is contained in:
HitPanda
2023-09-02 22:11:38 +03:00
committed by Aviu00
parent d75016da97
commit 800225271c

View File

@@ -627,7 +627,7 @@ namespace Content.Shared.Preferences
_traitPreferences.AddRange(traits);
prototypeManager.TryIndex<TTSVoicePrototype>(Voice, out var voice);
if (voice is null || !CanHaveVoice(voice, Sex))
if (voice is null)
Voice = SharedHumanoidAppearanceSystem.DefaultSexVoice[sex];
}