diff --git a/NewHorizons/Components/Volumes/SpeedLimiterVolume.cs b/NewHorizons/Components/Volumes/SpeedLimiterVolume.cs
index f5d1e4af..478589ff 100644
--- a/NewHorizons/Components/Volumes/SpeedLimiterVolume.cs
+++ b/NewHorizons/Components/Volumes/SpeedLimiterVolume.cs
@@ -142,8 +142,6 @@ namespace NewHorizons.Components.Volumes
public float deceleration;
- public bool decelerated;
-
public TrackedBody(OWRigidbody body, Detector.Name name, float deceleration)
{
this.body = body;
diff --git a/NewHorizons/External/Modules/Volumes/VolumeInfos/SpeedLimiterVolumeInfo.cs b/NewHorizons/External/Modules/Volumes/VolumeInfos/SpeedLimiterVolumeInfo.cs
index f6f2fca9..ef341d57 100644
--- a/NewHorizons/External/Modules/Volumes/VolumeInfos/SpeedLimiterVolumeInfo.cs
+++ b/NewHorizons/External/Modules/Volumes/VolumeInfos/SpeedLimiterVolumeInfo.cs
@@ -14,13 +14,13 @@ namespace NewHorizons.External.Modules.Volumes.VolumeInfos
public float maxSpeed = 10f;
///
- ///
+ /// The distance from the outside of the volume that the limiter slows you down to max speed at.
///
[DefaultValue(100f)]
public float stoppingDistance = 100f;
///
- ///
+ /// The maximum angle (in degrees) between the direction the incoming object is moving relative to the volume's center and the line from the object toward the center of the volume, within which the speed limiter will activate.
///
[DefaultValue(60f)]
public float maxEntryAngle = 60f;