Files
wwdpublic/Content.Server/Speech/Components/FrenchAccentComponent.cs
brainfood1183 0b848034e9 Add French accent beret (#21430)
(cherry picked from commit e1805e04d43bc7c8cb240ebc1d1271fa229bcc62)
2024-02-18 23:12:00 +01:00

12 lines
345 B
C#

using Content.Server.Speech.EntitySystems;
namespace Content.Server.Speech.Components;
/// <summary>
/// French accent replaces spoken letters. "th" becomes "z" and "H" at the start of a word becomes "'".
/// </summary>
[RegisterComponent]
[Access(typeof(FrenchAccentSystem))]
public sealed partial class FrenchAccentComponent : Component
{ }