Give station events command completions, cleanup (#8464)

This commit is contained in:
Pieter-Jan Briers
2022-05-27 02:19:58 +02:00
committed by GitHub
parent 4f9f9e5942
commit 821df271c4
3 changed files with 73 additions and 51 deletions

View File

@@ -65,22 +65,6 @@ namespace Content.Server.StationEvents
private bool _enabled = true;
/// <summary>
/// Admins can get a list of all events available to run, regardless of whether their requirements have been met
/// </summary>
/// <returns></returns>
public string GetEventNames()
{
StringBuilder result = new StringBuilder();
foreach (var stationEvent in _stationEvents)
{
result.Append(stationEvent.Name + "\n");
}
return result.ToString();
}
/// <summary>
/// Admins can forcibly run events by passing in the Name
/// </summary>