diff --git a/Content.Server/DoAfter/DoAfter.cs b/Content.Server/DoAfter/DoAfter.cs index f46965118b..05c927ff35 100644 --- a/Content.Server/DoAfter/DoAfter.cs +++ b/Content.Server/DoAfter/DoAfter.cs @@ -173,7 +173,7 @@ namespace Content.Server.DoAfter //recalculate Target location in case Target has also moved var targetCoordinates = xformQuery.GetComponent(EventArgs.Target.Value).Coordinates; userXform ??= xformQuery.GetComponent(EventArgs.User); - if (userXform.Coordinates.InRange(entityManager, targetCoordinates, EventArgs.DistanceThreshold.Value)) + if (!userXform.Coordinates.InRange(entityManager, targetCoordinates, EventArgs.DistanceThreshold.Value)) return true; }