Familiars respawn (#7640)

This commit is contained in:
Rane
2022-04-23 22:27:19 -04:00
committed by GitHub
parent a74e6842d9
commit 6054c5bc53
16 changed files with 129 additions and 10 deletions

View File

@@ -0,0 +1,17 @@
namespace Content.Server.Bible.Components
{
/// <summary>
/// This component is for the chaplain's familiars, and mostly
/// used to track their current state and to give a component to check for
/// if any special behavior is needed.
/// </summary>
[RegisterComponent]
public sealed class FamiliarComponent : Component
{
/// <summary>
/// The entity this familiar was summoned from.
/// </summary>
[ViewVariables]
public EntityUid? Source = null;
}
}