From 9dc4bf983e5ccd2f49a998403b87c2af5a98e5f6 Mon Sep 17 00:00:00 2001 From: keslik Date: Tue, 25 Feb 2025 21:14:58 +0300 Subject: [PATCH] replace --- .../Tests/Preferences/ServerDbSqliteTests.cs | 2 +- Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs | 8 ++++---- Content.Shared/_White/TTS/SharedTTSComponent.cs | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Content.IntegrationTests/Tests/Preferences/ServerDbSqliteTests.cs b/Content.IntegrationTests/Tests/Preferences/ServerDbSqliteTests.cs index 08d1df62e7..e81e649320 100644 --- a/Content.IntegrationTests/Tests/Preferences/ServerDbSqliteTests.cs +++ b/Content.IntegrationTests/Tests/Preferences/ServerDbSqliteTests.cs @@ -46,7 +46,7 @@ namespace Content.IntegrationTests.Tests.Preferences "Silicon", "The biggest boy around.", "Human", - "Mykyta", + "Nord", 21, Sex.Male, Gender.Epicene, diff --git a/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs b/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs index 86a5f3c3d0..c0346114dd 100644 --- a/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs +++ b/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs @@ -33,13 +33,13 @@ public abstract class SharedHumanoidAppearanceSystem : EntitySystem public const string DefaultBodyType = "HumanNormal"; [ValidatePrototypeId] - public const string DefaultVoice = "Mykyta"; + public const string DefaultVoice = "Nord"; public static readonly Dictionary> DefaultSexVoice = new() { - { Sex.Male, "Mykyta" }, - { Sex.Female, "Charlotte" }, - { Sex.Unsexed, "Glados" }, + { Sex.Male, "Nord" }, + { Sex.Female, "Amina" }, + { Sex.Unsexed, "Alyx" }, }; public override void Initialize() diff --git a/Content.Shared/_White/TTS/SharedTTSComponent.cs b/Content.Shared/_White/TTS/SharedTTSComponent.cs index 055c6f7de5..3a1eb25248 100644 --- a/Content.Shared/_White/TTS/SharedTTSComponent.cs +++ b/Content.Shared/_White/TTS/SharedTTSComponent.cs @@ -14,5 +14,5 @@ public sealed partial class SharedTTSComponent : Component /// Prototype of used voice for TTS. /// [ViewVariables(VVAccess.ReadWrite), DataField, AutoNetworkedField] - public ProtoId VoicePrototypeId { get; set; } = "Mykyta"; + public ProtoId VoicePrototypeId { get; set; } = "Nord"; }