diff --git a/Content.Server/StationEvents/Events/StationEvent.cs b/Content.Server/StationEvents/Events/StationEvent.cs index 6be4c15030..f80bd9fb2c 100644 --- a/Content.Server/StationEvents/Events/StationEvent.cs +++ b/Content.Server/StationEvents/Events/StationEvent.cs @@ -108,7 +108,7 @@ namespace Content.Server.StationEvents.Events Occurrences += 1; EntitySystem.Get() - .Add(LogType.EventStarted, $"Event startup: {Name}"); + .Add(LogType.EventStarted, LogImpact.High, $"Event startup: {Name}"); } /// diff --git a/Content.Server/StationEvents/StationEventSystem.cs b/Content.Server/StationEvents/StationEventSystem.cs index 8519e7ecea..e6a43f6459 100644 --- a/Content.Server/StationEvents/StationEventSystem.cs +++ b/Content.Server/StationEvents/StationEventSystem.cs @@ -95,7 +95,7 @@ namespace Content.Server.StationEvents /// 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. // Wasn't sure on whether to localize this given it's a command