Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-11-03 14:50:30 +01:00
1.9.2 support (no protocol changes from what I've seen)
Dieser Commit ist enthalten in:
Ursprung
639c9ea8c1
Commit
fb6055cbfe
@ -15,7 +15,7 @@ public class ProtocolRegistry {
|
|||||||
static {
|
static {
|
||||||
// Register built in protocols
|
// Register built in protocols
|
||||||
registerProtocol(new Protocol1_9TO1_8(), Collections.singletonList(ProtocolVersion.V1_9), ProtocolVersion.V1_8);
|
registerProtocol(new Protocol1_9TO1_8(), Collections.singletonList(ProtocolVersion.V1_9), ProtocolVersion.V1_8);
|
||||||
registerProtocol(new Protocol1_9_1TO1_9(), Collections.singletonList(ProtocolVersion.V1_9_1_PRE2), ProtocolVersion.V1_9);
|
registerProtocol(new Protocol1_9_1TO1_9(), Arrays.asList(ProtocolVersion.V1_9_1_PRE2, ProtocolVersion.V1_9_2), ProtocolVersion.V1_9);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -8,5 +8,6 @@ public class ProtocolVersion {
|
|||||||
public static final int V1_8 = 47;
|
public static final int V1_8 = 47;
|
||||||
|
|
||||||
public static final int V1_9 = 107;
|
public static final int V1_9 = 107;
|
||||||
public static final int V1_9_1_PRE2 = 108;
|
public static final int V1_9_1_PRE2 = 108; // used for 1.9.1
|
||||||
|
public static final int V1_9_2 = 109;
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren