From 13692b5433eae49d590717d9502c10da7563a952 Mon Sep 17 00:00:00 2001 From: DrSmugleaf Date: Mon, 22 Nov 2021 20:55:47 +0100 Subject: [PATCH] Make starting and running station events high priority --- Content.Server/StationEvents/Events/StationEvent.cs | 2 +- Content.Server/StationEvents/StationEventSystem.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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