Skip to content

Commit

Permalink
oups
Browse files Browse the repository at this point in the history
  • Loading branch information
gnembon committed Aug 9, 2023
1 parent 8a9c4f0 commit b197c5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/carpet/script/value/ValueConversions.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public static <T extends Number> Value of(MinMaxBounds<T> range)
{
return ListValue.of(
range.min().map(NumericValue::of).orElse(Value.NULL),
range.min().map(NumericValue::of).orElse(Value.NULL)
range.max().map(NumericValue::of).orElse(Value.NULL)
);
}

Expand Down

0 comments on commit b197c5e

Please sign in to comment.