diff --git a/Content.Server/FootPrint/FootPrintsSystem.cs b/Content.Server/FootPrint/FootPrintsSystem.cs index a4828b43782..e69e9bcf226 100644 --- a/Content.Server/FootPrint/FootPrintsSystem.cs +++ b/Content.Server/FootPrint/FootPrintsSystem.cs @@ -52,10 +52,10 @@ private void OnStartupComponent(EntityUid uid, FootPrintsComponent component, Co private void OnMove(EntityUid uid, FootPrintsComponent component, ref MoveEvent args) { // Floof: clear stored DNAs if footprints are now invisible - if (component.PrintsColor.A <= .2f) + if (component.PrintsColor.A <= .3f) component.DNAs.Clear(); - if (component.PrintsColor.A <= .2f // avoid creating footsteps that are invisible + if (component.PrintsColor.A <= .3f // avoid creating footsteps that are invisible || TryComp(uid, out var physics) && physics.BodyStatus != BodyStatus.OnGround // Floof: do not create footprints if the entity is flying || !_transformQuery.TryComp(uid, out var transform) || !_mobThresholdQuery.TryComp(uid, out var mobThreshHolds)