From 04a33dcea946572aed71b3dc31b2b2307afe4164 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Wed, 4 Dec 2024 23:20:55 +0000 Subject: [PATCH] dont give AI a fugi report (#2363) Co-authored-by: deltanedas <@deltanedas:kde.org> --- Content.Server/DeltaV/StationEvents/Events/FugitiveRule.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Content.Server/DeltaV/StationEvents/Events/FugitiveRule.cs b/Content.Server/DeltaV/StationEvents/Events/FugitiveRule.cs index 5aed54bc976..f39d3eb07d0 100644 --- a/Content.Server/DeltaV/StationEvents/Events/FugitiveRule.cs +++ b/Content.Server/DeltaV/StationEvents/Events/FugitiveRule.cs @@ -11,6 +11,7 @@ using Content.Shared.Paper; using Content.Shared.Popups; using Content.Shared.Random.Helpers; +using Content.Shared.Silicons.StationAi; using Content.Shared.Storage.EntitySystems; using Robust.Shared.Physics.Components; using Robust.Shared.Utility; @@ -46,7 +47,7 @@ protected override void ActiveTick(EntityUid uid, FugitiveRuleComponent comp, Ga var consoles = new List(); while (query.MoveNext(out var console, out var xform, out _)) { - if (StationSystem.GetOwningStation(console, xform) != comp.Station || HasComp(console)) + if (StationSystem.GetOwningStation(console, xform) != comp.Station || HasComp(console) || HasComp(console)) continue; consoles.Add(xform);