From: Vigers Ray <60344369+VigersRay@users.noreply.github.com> Date: Sat, 9 Dec 2023 04:39:00 +0000 (+0300) Subject: Fix entity logs verb (#22231) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=b64715bfc3440af7b699ee272d4b47e6cdb50ecd;p=space-station-14.git Fix entity logs verb (#22231) --- 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 };