-
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 'new-frontiers-14:master' into 2024-11-01-DionaTags
- Loading branch information
Showing
283 changed files
with
23,335 additions
and
8,529 deletions.
There are no files selected for viewing
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
2 changes: 1 addition & 1 deletion
2
...t/NewFrontier/Latejoin/NFLateJoinGui.xaml → ...nt.Client/_NF/Latejoin/NFLateJoinGui.xaml
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
File renamed without changes.
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
File renamed without changes.
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
9 changes: 9 additions & 0 deletions
9
Content.Server/Nyanotrasen/Item/PseudoItem/AllowsSleepInsideComponent.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,9 @@ | ||
namespace Content.Server.Item.PseudoItem; | ||
|
||
/// <summary> | ||
/// Signifies that pseudo-item creatures can sleep inside the container to which this component was added. | ||
/// </summary> | ||
[RegisterComponent] | ||
public sealed partial class AllowsSleepInsideComponent : 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
9 changes: 9 additions & 0 deletions
9
Content.Server/_NF/PublicTransit/Components/StationTransitComponent.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,9 @@ | ||
namespace Content.Server._NF.PublicTransit.Components; | ||
|
||
/// <summary> | ||
/// Added to a station that is available for public transit. | ||
/// </summary> | ||
[RegisterComponent, Access(typeof(PublicTransitSystem))] | ||
public sealed partial class StationTransitComponent : Component | ||
{ | ||
} |
18 changes: 18 additions & 0 deletions
18
Content.Server/_NF/PublicTransit/Components/TransitShuttleComponent.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,18 @@ | ||
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; | ||
|
||
namespace Content.Server._NF.PublicTransit.Components; | ||
|
||
/// <summary> | ||
/// Added to a grid to have it act as an automated public transit bus. | ||
/// Public Transit system will add this procedurally to any grid designated as a 'bus' through the CVAR | ||
/// Mappers may add it to their shuttle if they wish, but this is going to force it's use and function as a public transit bus | ||
/// </summary> | ||
[RegisterComponent, Access(typeof(PublicTransitSystem))] | ||
public sealed partial class TransitShuttleComponent : Component | ||
{ | ||
[DataField("nextStation")] | ||
public EntityUid NextStation; | ||
|
||
[DataField("nextTransfer", customTypeSerializer:typeof(TimeOffsetSerializer))] | ||
public TimeSpan NextTransfer; | ||
} |
Oops, something went wrong.