Escape pods (#14809)
* Namespace adjustments for days * pod * thanks rider * Fix the oop launch * Fixes * Fix stuff * eeeeeeeee * Fix * access * map * forgor * thing * Genericise escape pod fill
This commit is contained in:
@@ -11,12 +11,15 @@ namespace Content.Server.Shuttles.Commands;
|
||||
[AdminCommand(AdminFlags.Fun)]
|
||||
public sealed class DelayRoundEndCommand : IConsoleCommand
|
||||
{
|
||||
[Dependency] private readonly IEntitySystemManager _sysManager = default!;
|
||||
|
||||
public string Command => "delayroundend";
|
||||
public string Description => Loc.GetString("emergency-shuttle-command-round-desc");
|
||||
public string Help => $"{Command}";
|
||||
public void Execute(IConsoleShell shell, string argStr, string[] args)
|
||||
{
|
||||
var system = IoCManager.Resolve<IEntitySystemManager>().GetEntitySystem<ShuttleSystem>();
|
||||
var system = _sysManager.GetEntitySystem<EmergencyShuttleSystem>();
|
||||
|
||||
if (system.DelayEmergencyRoundEnd())
|
||||
{
|
||||
shell.WriteLine(Loc.GetString("emergency-shuttle-command-round-yes"));
|
||||
|
||||
Reference in New Issue
Block a user