diff --git a/Content.Server/RoundEnd/RoundEndSystem.cs b/Content.Server/RoundEnd/RoundEndSystem.cs index 54c4f7e082..421ced8b7a 100644 --- a/Content.Server/RoundEnd/RoundEndSystem.cs +++ b/Content.Server/RoundEnd/RoundEndSystem.cs @@ -93,7 +93,7 @@ namespace Content.Server.RoundEnd return; } - if (requester != default) + if (requester != null) { _adminLog.Add(LogType.ShuttleCalled, LogImpact.High, $"Shuttle called by {ToPrettyString(requester.Value)}"); } @@ -126,7 +126,7 @@ namespace Content.Server.RoundEnd return; } - if (requester != default) + if (requester != null) { _adminLog.Add(LogType.ShuttleRecalled, LogImpact.High, $"Shuttle recalled by {ToPrettyString(requester.Value)}"); }