mirror of
https://github.com/dmulloy2/ProtocolLib.git
synced 2025-04-04 03:05:45 +02:00
Small update for 1.19.2 (#1814)
This commit is contained in:
parent
7fd4ec3172
commit
575174580e
2
pom.xml
2
pom.xml
@ -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>
|
||||||
|
@ -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.
|
||||||
|
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user