Skip to content

Commit a547538

Browse files
authored
Feature: Force Disable Fast Math (for server anticheat purposes)
1 parent 9d3bff3 commit a547538

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/main/java/com/cheatbreaker/nethandler/obj/ServerRule.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ public enum ServerRule {
99
MINIMAP_STATUS("minimapStatus", String.class),
1010
SERVER_HANDLES_WAYPOINTS("serverHandlesWaypoints", Boolean.class),
1111
COMPETITIVE_GAMEMODE("competitiveGame", Boolean.class),
12-
LEGACY_COMBAT("legacyCombat", Boolean.class);
12+
LEGACY_COMBAT("legacyCombat", Boolean.class),
13+
FORCE_DISABLE_FAST_MATH("forceDisableFastMath", Boolean.class);
1314

1415
private final String rule;
1516
private final Class value;
@@ -28,4 +29,4 @@ public static ServerRule getRule(String name) {
2829
this.value = value;
2930
}
3031

31-
}
32+
}

0 commit comments

Comments
 (0)