mirror of
https://github.com/ViaVersion/ViaVersion.git
synced 2024-11-15 22:55:33 +01:00
Change protocol constants to final fields
This commit is contained in:
parent
9b6a9fca3d
commit
5ae8a35740
@ -2,11 +2,11 @@ package us.myles.ViaVersion.api.protocol;
|
|||||||
|
|
||||||
public class ProtocolVersion {
|
public class ProtocolVersion {
|
||||||
/* Defined protocol constants */
|
/* Defined protocol constants */
|
||||||
public static int V1_7_1 = 4;
|
public static final int V1_7_1 = 4;
|
||||||
public static int V1_7_6 = 5;
|
public static final int V1_7_6 = 5;
|
||||||
|
|
||||||
public static int V1_8 = 47;
|
public static final int V1_8 = 47;
|
||||||
|
|
||||||
public static int V1_9 = 107;
|
public static final int V1_9 = 107;
|
||||||
public static int V1_9_1_PRE2 = 108;
|
public static final int V1_9_1_PRE2 = 108;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user