* carry * fix * carriable update * Removed carriable from vox, slime --------- Co-authored-by: Vigers Ray <60344369+VigersRay@users.noreply.github.com>
11 lines
278 B
C#
11 lines
278 B
C#
namespace Content.Server.Carrying
|
|
{
|
|
/// <summary>
|
|
/// Added to an entity when they are carrying somebody.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class CarryingComponent : Component
|
|
{
|
|
public EntityUid Carried = default!;
|
|
}
|
|
}
|