mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-02-16 02:20:57 +00:00
fix TerraScript EqualsStatement
This commit is contained in:
@@ -32,7 +32,7 @@ public class EqualsStatement extends BinaryOperation<Object, Boolean> {
|
||||
return FastMath.abs(l.doubleValue() - r.doubleValue()) <= EPSILON;
|
||||
}
|
||||
|
||||
return left.equals(rightUnwrapped);
|
||||
return leftUnwrapped.equals(rightUnwrapped);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user