Skip to content

Commit

Permalink
Fix TTS default voices
Browse files Browse the repository at this point in the history
  • Loading branch information
Lokilife committed Sep 21, 2024
1 parent 8599755 commit 8283602
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ public abstract class SharedHumanoidAppearanceSystem : EntitySystem
[ValidatePrototypeId<SpeciesPrototype>]
public const string DefaultSpecies = "Human";
// Corvax-TTS-Start
public const string DefaultVoice = "Garithos";
public const string DefaultVoice = "Illidan";
public static readonly Dictionary<Sex, string> DefaultSexVoice = new()
{
{Sex.Male, "Garithos"},
{Sex.Female, "Maiev"},
{Sex.Male, "Illidan"},
{Sex.Female, "Mana"},
{Sex.Unsexed, "Myron"},
};
// Corvax-TTS-End
Expand Down

0 comments on commit 8283602

Please sign in to comment.