Files
tbd-station-14/Content.Server/Station/StationConfig.Shuttles.cs
Vordenburg 7c4ff1c03d Allow stations to specify their own custom emergency shuttles. (#12747)
* Allow individual stations to specify a custom emergency shuttle.

* Use better assert message.
2022-11-24 12:28:03 -06:00

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");
}