Fix changeling typing indicator (#39454)

init
This commit is contained in:
ScarKy0
2025-08-07 16:00:35 +02:00
committed by GitHub
parent 9b5d2ff11b
commit ff5ce315f9
2 changed files with 3 additions and 2 deletions

View File

@@ -7,13 +7,13 @@ namespace Content.Shared.Chat.TypingIndicator;
/// Show typing indicator icon when player typing text in chat box.
/// Added automatically when player poses entity.
/// </summary>
[RegisterComponent, NetworkedComponent]
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
[Access(typeof(SharedTypingIndicatorSystem))]
public sealed partial class TypingIndicatorComponent : Component
{
/// <summary>
/// Prototype id that store all visual info about typing indicator.
/// </summary>
[DataField("proto")]
[DataField("proto"), AutoNetworkedField]
public ProtoId<TypingIndicatorPrototype> TypingIndicatorPrototype = "default";
}