diff --git a/NewHorizons/External/Modules/PropModule.cs b/NewHorizons/External/Modules/PropModule.cs
index b3c27cca..4d3362cd 100644
--- a/NewHorizons/External/Modules/PropModule.cs
+++ b/NewHorizons/External/Modules/PropModule.cs
@@ -262,21 +262,25 @@ namespace NewHorizons.External.Modules
///
/// Maximum time between meteor launches.
///
+ [DefaultValue(20f)]
public float maxInterval = 20f;
///
/// Maximum random speed at which meteors are launched.
///
+ [DefaultValue(150f)]
public float maxLaunchSpeed = 150f;
///
/// Minimum time between meteor launches.
///
+ [DefaultValue(5f)]
public float minInterval = 5f;
///
/// Minimum random speed at which meteors are launched.
///
+ [DefaultValue(50f)]
public float minLaunchSpeed = 50f;
///