Make starting and running station events high priority

This commit is contained in:
DrSmugleaf
2021-11-22 20:55:47 +01:00
parent 612c62c569
commit 13692b5433
2 changed files with 2 additions and 2 deletions

View File

@@ -108,7 +108,7 @@ namespace Content.Server.StationEvents.Events
Occurrences += 1; Occurrences += 1;
EntitySystem.Get<AdminLogSystem>() EntitySystem.Get<AdminLogSystem>()
.Add(LogType.EventStarted, $"Event startup: {Name}"); .Add(LogType.EventStarted, LogImpact.High, $"Event startup: {Name}");
} }
/// <summary> /// <summary>

View File

@@ -95,7 +95,7 @@ namespace Content.Server.StationEvents
/// <returns></returns> /// <returns></returns>
public string RunEvent(string name) public string RunEvent(string name)
{ {
_adminLog.Add(LogType.EventRan, $"Event run: {name}"); _adminLog.Add(LogType.EventRan, LogImpact.High, $"Event run: {name}");
// Could use a dictionary but it's such a minor thing, eh. // Could use a dictionary but it's such a minor thing, eh.
// Wasn't sure on whether to localize this given it's a command // Wasn't sure on whether to localize this given it's a command