-
Notifications
You must be signed in to change notification settings - Fork 198
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add whitelist to cryostorage (#30574)
- Loading branch information
1 parent
09fa40f
commit d193be9
Showing
3 changed files
with
17 additions
and
1 deletion.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
Content.Shared/Bed/Cryostorage/CanEnterCryostorageComponent.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using Robust.Shared.GameStates; | ||
|
||
namespace Content.Shared.Bed.Cryostorage; | ||
|
||
/// <summary> | ||
/// Serves as a whitelist that allows an entity with this component to enter cryostorage. | ||
/// It will also require MindContainerComponent. | ||
/// </summary> | ||
[RegisterComponent, NetworkedComponent] | ||
public sealed partial class CanEnterCryostorageComponent : Component { } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters