Skip to content

Commit

Permalink
Fix lower bound of @Config.RangeFloat
Browse files Browse the repository at this point in the history
  • Loading branch information
glowredman authored Feb 18, 2024
1 parent 2b86890 commit 6a132cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/gtnewhorizon/gtnhlib/config/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
@Target(ElementType.FIELD)
@interface RangeFloat {

float min() default Float.MIN_VALUE;
float min() default -Float.MAX_VALUE;

float max() default Float.MAX_VALUE;
}
Expand Down

0 comments on commit 6a132cf

Please sign in to comment.