diff --git a/src/main/java/com/volmit/iris/util/decree/annotations/Param.java b/src/main/java/com/volmit/iris/util/decree/annotations/Param.java
index 54ca2d67f..79b682a7c 100644
--- a/src/main/java/com/volmit/iris/util/decree/annotations/Param.java
+++ b/src/main/java/com/volmit/iris/util/decree/annotations/Param.java
@@ -48,8 +48,8 @@ public @interface Param {
/**
* The default value for this argument.
* The entered string is parsed to the value similarly to how commandline-text would be.
- * Default is {@link #REQUIRED}, which indicates the variable MUST be defined.
- * If you define this, the variable automatically becomes non-required.
+ * Default is {@link #REQUIRED}, which indicates the variable MUST be defined by the person running the command.
+ * If you define this, the variable automatically becomes non-required, but can still be set.
*/
String value() default REQUIRED;