diff --git a/Content.Shared/MouseRotator/MouseRotatorComponent.cs b/Content.Shared/MouseRotator/MouseRotatorComponent.cs
index 1f399b31f9..9b3a352282 100644
--- a/Content.Shared/MouseRotator/MouseRotatorComponent.cs
+++ b/Content.Shared/MouseRotator/MouseRotatorComponent.cs
@@ -15,7 +15,7 @@ public sealed partial class MouseRotatorComponent : Component
/// How much the desired angle needs to change before a predictive event is sent
///
[DataField, AutoNetworkedField]
- public Angle AngleTolerance = Angle.FromDegrees(20.0);
+ public Angle AngleTolerance = Angle.FromDegrees(5.0); // DeltaV - smooth flashlights, was 20
///
/// The angle that will be lerped to
@@ -37,7 +37,7 @@ public sealed partial class MouseRotatorComponent : Component
/// like turrets or ship guns, which have finer range of movement.
///
[DataField, AutoNetworkedField]
- public bool Simple4DirMode = true;
+ public bool Simple4DirMode; // DeltaV - smooth flashlights, was true
}
///