Merge remote-tracking branch 'upstream/master' into ups

This commit is contained in:
Jabak
2024-09-29 13:08:38 +03:00
128 changed files with 1836 additions and 824 deletions

View File

@@ -1,11 +1,12 @@
using Robust.Shared.Prototypes;
using Robust.Shared.GameStates;
using Robust.Shared.Prototypes;
namespace Content.Shared._White.TTS;
/// <summary>
/// Apply TTS for entity chat say messages
/// </summary>
[RegisterComponent, AutoGenerateComponentState]
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
// ReSharper disable once InconsistentNaming
public sealed partial class SharedTTSComponent : Component
{
@@ -14,4 +15,4 @@ public sealed partial class SharedTTSComponent : Component
/// </summary>
[ViewVariables(VVAccess.ReadWrite), DataField, AutoNetworkedField]
public ProtoId<TTSVoicePrototype> VoicePrototypeId { get; set; } = "Eugene";
}
}