Merge remote-tracking branch 'origin/master'

This commit is contained in:
Anuken
2025-05-15 18:30:48 -04:00
2 changed files with 5 additions and 0 deletions

View File

@@ -41,6 +41,7 @@ public enum LogicOp{
log10("log10", Math::log10),
floor("floor", Math::floor),
ceil("ceil", Math::ceil),
round("round", Math::round),
sqrt("sqrt", Math::sqrt),
rand("rand", d -> GlobalVars.rand.nextDouble() * d),