mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-06-12 04:23:54 +00:00
Fix not operator
(cherry picked from commit 00c7d3a157d8d859ede501d71282e82fba40e37b)
This commit is contained in:
@ -237,7 +237,7 @@ class ExpressionHandles {
|
||||
}
|
||||
|
||||
private static boolean doubleToBool(double bool) {
|
||||
return bool > 0;
|
||||
return bool != 0;
|
||||
}
|
||||
|
||||
static double boolToDouble(boolean bool) {
|
||||
|
Reference in New Issue
Block a user