From b9d800793ca3239d56928104f44d81d7d15636fc Mon Sep 17 00:00:00 2001 From: Aviu00 <93730715+Aviu00@users.noreply.github.com> Date: Sat, 30 Sep 2023 16:32:22 +0900 Subject: [PATCH] Examine fix (#450) --- Content.Server/White/Other/ExamineSystem/ExamineSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/White/Other/ExamineSystem/ExamineSystem.cs b/Content.Server/White/Other/ExamineSystem/ExamineSystem.cs index 77e1b23bda..e45f18bc61 100644 --- a/Content.Server/White/Other/ExamineSystem/ExamineSystem.cs +++ b/Content.Server/White/Other/ExamineSystem/ExamineSystem.cs @@ -120,7 +120,7 @@ namespace Content.Server.White.Other.ExamineSystem var combinedInfo = string.Join("\n", infoLines); - if (TryComp(args.Examined, out ActorComponent? actorComponent)) + if (TryComp(args.Examiner, out ActorComponent? actorComponent)) { SendNoticeMessage(actorComponent, combinedInfo); }