1
0
mirror of https://github.com/dmulloy2/ProtocolLib.git synced 2025-04-04 03:05:45 +02:00

Small update for 1.19.2 ()

This commit is contained in:
Pasqual Koschmieder 2022-08-10 22:49:01 +02:00 committed by GitHub
parent 7fd4ec3172
commit 575174580e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 3 deletions
pom.xml
src/main/java/com/comphenix/protocol

View File

@ -19,7 +19,7 @@
<junit.version>5.9.0</junit.version> <junit.version>5.9.0</junit.version>
<mockito.version>4.6.1</mockito.version> <mockito.version>4.6.1</mockito.version>
<netty.version>4.1.77.Final</netty.version> <netty.version>4.1.77.Final</netty.version>
<spigot.version>1.19.1-R0.1-SNAPSHOT</spigot.version> <spigot.version>1.19.2-R0.1-SNAPSHOT</spigot.version>
</properties> </properties>
<build> <build>

View File

@ -39,9 +39,9 @@ public class ProtocolLibrary {
public static final String MAXIMUM_MINECRAFT_VERSION = MinecraftVersion.LATEST.getVersion(); public static final String MAXIMUM_MINECRAFT_VERSION = MinecraftVersion.LATEST.getVersion();
/** /**
* The date (with ISO 8601 or YYYY-MM-DD) when the most recent version (1.19.1) was released. * The date (with ISO 8601 or YYYY-MM-DD) when the most recent version (1.19.2) was released.
*/ */
public static final String MINECRAFT_LAST_RELEASE_DATE = "2022-07-27"; public static final String MINECRAFT_LAST_RELEASE_DATE = "2022-08-05";
/** /**
* Plugins that are currently incompatible with ProtocolLib. * Plugins that are currently incompatible with ProtocolLib.

View File

@ -83,6 +83,7 @@ public final class MinecraftProtocolVersion {
map.put(new MinecraftVersion(1, 19, 0), 759); map.put(new MinecraftVersion(1, 19, 0), 759);
map.put(new MinecraftVersion(1, 19, 1), 760); map.put(new MinecraftVersion(1, 19, 1), 760);
map.put(new MinecraftVersion(1, 19, 2), 760);
return map; return map;
} }