fix TerraScript EqualsStatement

This commit is contained in:
dfsek
2022-06-02 22:04:52 -07:00
parent 20e6b8bb63
commit a5db29f2ad

View File

@@ -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);
}