Fix embeddable projectiles dissapearing (reopening) (#35153)
This commit is contained in:
13
Content.Shared/Projectiles/EmbeddedContainerComponent.cs
Normal file
13
Content.Shared/Projectiles/EmbeddedContainerComponent.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using Robust.Shared.GameStates;
|
||||
|
||||
namespace Content.Shared.Projectiles;
|
||||
|
||||
/// <summary>
|
||||
/// Stores a list of all stuck entities to release when this entity is deleted.
|
||||
/// </summary>
|
||||
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
||||
public sealed partial class EmbeddedContainerComponent : Component
|
||||
{
|
||||
[DataField, AutoNetworkedField]
|
||||
public HashSet<EntityUid> EmbeddedObjects = new();
|
||||
}
|
||||
Reference in New Issue
Block a user