mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-02-02 12:23:47 +07:00
java 8's compiler is stupid apparently
This commit is contained in:
parent
c1258b75d5
commit
4b0c977e73
@ -26,7 +26,7 @@ public enum LogicOp{
|
||||
dst("dst", (x, y) -> Mathf.dst((float)x, (float)y)),
|
||||
|
||||
not("not", a -> ~(int)(a)),
|
||||
abs("abs", Math::abs),
|
||||
abs("abs", a -> Math.abs(a)),
|
||||
log("log", Math::log),
|
||||
log10("log10", Math::log10),
|
||||
sin("sin", d -> Math.sin(d * 0.017453292519943295D)),
|
||||
|
Loading…
Reference in New Issue
Block a user