Skip to content

Commit

Permalink
Allow absolute-zero fluids (#2430)
Browse files Browse the repository at this point in the history
  • Loading branch information
a-a-GiTHuB-a-a authored and screret committed Dec 5, 2024
1 parent 03f020f commit ed6f018
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public FluidBuilder() {}
* @return this;
*/
public @NotNull FluidBuilder temperature(int temperature) {
Preconditions.checkArgument(temperature > 0, "temperature must be > 0");
Preconditions.checkArgument(temperature >= 0, "temperature must be >= 0");
this.temperature = temperature;
return this;
}
Expand Down

0 comments on commit ed6f018

Please sign in to comment.