* fix: auto-update mailing unit + gas canister UIs * fix: make FollowerComponent auto handle state * refactor: kill AfterAutoHandleState for Follower * flakeops
13 lines
325 B
C#
13 lines
325 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Follower.Components;
|
|
|
|
[RegisterComponent]
|
|
[Access(typeof(FollowerSystem))]
|
|
[NetworkedComponent, AutoGenerateComponentState]
|
|
public sealed partial class FollowerComponent : Component
|
|
{
|
|
[AutoNetworkedField, DataField("following")]
|
|
public EntityUid Following;
|
|
}
|