* Allow individual stations to specify a custom emergency shuttle. * Use better assert message.
14 lines
463 B
C#
14 lines
463 B
C#
using Robust.Shared.Utility;
|
|
using Robust.Shared.Serialization.TypeSerializers.Implementations;
|
|
|
|
namespace Content.Server.Station;
|
|
|
|
public sealed partial class StationConfig
|
|
{
|
|
/// <summary>
|
|
/// Emergency shuttle map path for this station.
|
|
/// </summary>
|
|
[DataField("emergencyShuttlePath", customTypeSerializer: typeof(ResourcePathSerializer))]
|
|
public ResourcePath EmergencyShuttlePath { get; set; } = new("/Maps/Shuttles/emergency.yml");
|
|
}
|