From b64715bfc3440af7b699ee272d4b47e6cdb50ecd Mon Sep 17 00:00:00 2001 From: Vigers Ray <60344369+VigersRay@users.noreply.github.com> Date: Sat, 9 Dec 2023 07:39:00 +0300 Subject: [PATCH] Fix entity logs verb (#22231) --- Content.Server/Administration/Systems/AdminVerbSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.cs b/Content.Server/Administration/Systems/AdminVerbSystem.cs index 2664913c9a..2637004565 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.cs @@ -238,7 +238,7 @@ namespace Content.Server.Administration.Systems { var ui = new AdminLogsEui(); _eui.OpenEui(ui, player); - ui.SetLogFilter(search:args.Target.GetHashCode().ToString()); + ui.SetLogFilter(search:args.Target.Id.ToString()); }, Impact = LogImpact.Low }; -- 2.51.2