mirror of
https://github.com/ViaVersion/ViaVersion.git
synced 2025-01-24 08:21:23 +01:00
Support for 16w21b
This commit is contained in:
parent
082db38c40
commit
15fe8d394e
@ -29,7 +29,7 @@ public class ProtocolVersion {
|
||||
register(v1_9_1 = new ProtocolVersion(108, "1.9.1"));
|
||||
register(v1_9_2 = new ProtocolVersion(109, "1.9.2"));
|
||||
register(v1_9_3 = new ProtocolVersion(110, "1.9.3/4"));
|
||||
register(SNAPSHOT = new ProtocolVersion(202, "16w21a"));
|
||||
register(SNAPSHOT = new ProtocolVersion(203, "16w21b"));
|
||||
}
|
||||
|
||||
public static void register(@NonNull ProtocolVersion protocol) {
|
||||
@ -49,6 +49,6 @@ public class ProtocolVersion {
|
||||
}
|
||||
|
||||
public static List<ProtocolVersion> getProtocols() {
|
||||
return Collections.unmodifiableList(new ArrayList<ProtocolVersion>(versions.values()));
|
||||
return Collections.unmodifiableList(new ArrayList<>(versions.values()));
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user