We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d3bff3 commit a547538Copy full SHA for a547538
src/main/java/com/cheatbreaker/nethandler/obj/ServerRule.java
@@ -9,7 +9,8 @@ public enum ServerRule {
9
MINIMAP_STATUS("minimapStatus", String.class),
10
SERVER_HANDLES_WAYPOINTS("serverHandlesWaypoints", Boolean.class),
11
COMPETITIVE_GAMEMODE("competitiveGame", Boolean.class),
12
- LEGACY_COMBAT("legacyCombat", Boolean.class);
+ LEGACY_COMBAT("legacyCombat", Boolean.class),
13
+ FORCE_DISABLE_FAST_MATH("forceDisableFastMath", Boolean.class);
14
15
private final String rule;
16
private final Class value;
@@ -28,4 +29,4 @@ public static ServerRule getRule(String name) {
28
29
this.value = value;
30
}
31
-}
32
+}
0 commit comments