-
Notifications
You must be signed in to change notification settings - Fork 523
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into akupara-fan-compliance-and-wire-fix-patch
- Loading branch information
Showing
255 changed files
with
4,692 additions
and
2,182 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
Content.Client/Nyanotrasen/Item/PseudoItem/PseudoItemSystem.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,7 @@ | ||
using Content.Shared.Nyanotrasen.Item.PseudoItem; | ||
|
||
namespace Content.Client.Nyanotrasen.Item.PseudoItem; | ||
|
||
public sealed class PseudoItemSystem : SharedPseudoItemSystem | ||
{ | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
Content.Server/Nyanotrasen/Item/PseudoItem/AllowsSleepInsideComponent.cs
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
namespace Content.Server.Shuttles.Components; | ||
|
||
/// <summary> | ||
/// Lets you remotely control a shuttle. | ||
/// </summary> | ||
[RegisterComponent] | ||
public sealed partial class NFDroneConsoleComponent : Component | ||
{ | ||
[DataField(required: true)] | ||
public string Id = default!; | ||
|
||
/// <summary> | ||
/// <see cref="ShuttleConsoleComponent"/> that we're proxied into. | ||
/// </summary> | ||
[DataField] | ||
public EntityUid? Entity; | ||
} |
11 changes: 11 additions & 0 deletions
11
Content.Server/_NF/Shuttles/NFDroneConsoleTargetComponent.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,11 @@ | ||
namespace Content.Server.Shuttles; | ||
|
||
/// <summary> | ||
/// Lets you remotely control a shuttle. | ||
/// </summary> | ||
[RegisterComponent] | ||
public sealed partial class NFDroneConsoleTargetComponent : Component | ||
{ | ||
[DataField(required: true)] | ||
public string Id = default!; | ||
} |
Oops, something went wrong.