Skip to content

Commit

Permalink
Fix Synth Typing Indicator (cosmatic-drift-14#329)
Browse files Browse the repository at this point in the history
  • Loading branch information
LankLTE authored Jul 22, 2024
1 parent 2a53488 commit 61d59d3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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";
}

0 comments on commit 61d59d3

Please sign in to comment.