13
0
geforkt von Mirrors/Velocity

Fix logic for telling the server snapshot versions.

Dieser Commit ist enthalten in:
Andrew Steinborn 2020-11-04 18:58:48 -05:00
Ursprung 54c5effe27
Commit 642573e9e0

Datei anzeigen

@ -122,7 +122,7 @@ public enum ProtocolVersion {
* @return the protocol version * @return the protocol version
*/ */
public int getProtocol() { public int getProtocol() {
return protocol; return protocol == -1 ? snapshotProtocol : protocol;
} }
/** /**