Make followed session-specific (#30770)

* Make followed session-specific

* misimport
This commit is contained in:
metalgearsloth
2024-08-11 12:26:32 +10:00
committed by GitHub
parent 84217011a9
commit 9be61bfaa5
2 changed files with 19 additions and 0 deletions

View File

@@ -10,6 +10,8 @@ namespace Content.Shared.Follower.Components;
[Access(typeof(FollowerSystem))]
public sealed partial class FollowedComponent : Component
{
public override bool SessionSpecific => true;
[DataField, AutoNetworkedField]
public HashSet<EntityUid> Following = new();
}